Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
vilasvarma
Regular Visitor

How to calculate Decimal number to hours minutes seconds format

Hi everyone, 

Please could i get help to calculate decimal number to hh:mm:ss format. 

 

I've included sample data as well as the output required. 

Expected output

Screenshot 2021-11-22 173129.png

Calculated Datacard

Screenshot 2021-11-22 173044.png

Thanks

Vilas

Need Help

1 ACCEPTED SOLUTION

Thanks Surya

it will working fine

View solution in original post

3 REPLIES 3
Surya9
Helper V
Helper V

@VILAS 
I am using measure to get the expected output
where table[TVT] is the column contains total view time in sec 

time =
var a = SUM('Table'[TVT])  // calculating total view time
var b = MOD(a,60)
var c = QUOTIENT(a,60)
return c & "m " & b & "s"

Surya9_0-1637585614973.png

 

Thanks Surya

it will working fine

@vilasvarma Please mark this as a solution

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.