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
FJ83
Helper II
Helper II

How to convert time in MM:SS

Hi,

 

The whole data is based on seconds, Still, I would like to convert the data to MM: SS. Below was the formula I used but the calculation is working and unfortunately, the data was not validating correctly.

 

Response time in minutes = VAR duration = AVERAGE(CADD[Enter_to_Arrv_Seconds])
VAR Hours = INT ( Duration / 3600)
VAR Minutes = INT ( MOD( Duration - ( Hours * 3600 ),3600 ) / 60)
VAR Seconds = ROUNDUP(MOD ( MOD( Duration - ( Hours * 3600 ),3600 ), 60 ),0)
RETURN
(Minutes*100+ Seconds)+0
 
Below is the column in the table
 
FJ83_0-1652337748712.png

 

Kindly do the needful please !

 
 
1 ACCEPTED SOLUTION

Hi, @FJ83 

In measure you cannot directly convert data to MM:SS.

You might consider using  character ‘&’ to concatenate characters to get the final result

Please modify your original formula as below:

Response time in minutes =
VAR _duration =
    AVERAGE ( CADD[Enter_to_Arrv_Seconds] )
VAR Hours =
    INT ( _duration / 3600 )
VAR Minutes =
    INT ( MOD ( _duration - ( Hours * 3600 ), 3600 ) / 60 )
VAR Seconds =
    ROUNDUP ( MOD ( MOD ( _duration - ( Hours * 3600 ), 3600 ), 60 ), 0 )
RETURN
    Hours * 60 + Minutes & ":" & Seconds

veasonfmsft_0-1652766760473.png

Best Regards,
Community Support Team _ Eason

View solution in original post

6 REPLIES 6
SanketBhagwat
Solution Sage
Solution Sage

Hi @FJ83 
PLease try 'FORMAT" Dax function.
Refer below link;
https://docs.microsoft.com/en-us/dax/format-function-dax


Thanks,
Sanket
If this post helps, then mark it as 'Accept as Solution' and give it a thumbs up.

Previously we used this calculation and then format the measure at 00:00, Currently, they redefine the columns by enter_to_arrv_seconds (Data type - Whole number). 
 
The result should be in this format: 03:40
 
 
 
Hold time in Mins = VAR Duration = AVERAGEX(
DAC,DATEDIFF(DAC[IDDate],DAC[DispatchedTime],SECOND))
VAR Hours = INT ( Duration / 3600)
VAR Minutes = INT ( MOD( Duration - ( Hours * 3600 ),3600 ) / 60)
VAR Seconds = ROUNDUP(MOD ( MOD( Duration - ( Hours * 3600 ),3600 ), 60 ),0)
RETURN
(Minutes*100+ Seconds)+0

Hi, @FJ83 

In measure you cannot directly convert data to MM:SS.

You might consider using  character ‘&’ to concatenate characters to get the final result

Please modify your original formula as below:

Response time in minutes =
VAR _duration =
    AVERAGE ( CADD[Enter_to_Arrv_Seconds] )
VAR Hours =
    INT ( _duration / 3600 )
VAR Minutes =
    INT ( MOD ( _duration - ( Hours * 3600 ), 3600 ) / 60 )
VAR Seconds =
    ROUNDUP ( MOD ( MOD ( _duration - ( Hours * 3600 ), 3600 ), 60 ), 0 )
RETURN
    Hours * 60 + Minutes & ":" & Seconds

veasonfmsft_0-1652766760473.png

Best Regards,
Community Support Team _ Eason

I'm looking the data validation side by doing the calculation based on the column i mentioned above,

@FJ83 , Hope it is number to time

New column = Quotient([Time in Second],60)  & ":" & MOD([Time in Second],60)  

 

or

TIme(Quotient([Time in Second],3600)  ,Quotient(Mod([Time in Second],3600) ,60), Mod(Mod([Time in Second],3600) ,60) )

Hi @amitchandak 

 

How to find the average from the above calculation ?

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.

Top Solution Authors