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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
shannon8000
Regular Visitor

Measure not correctly totaling for time

I created a time column using dax to convert seconds to hh:mm:ss.  From the new column is configured as text to display properly.  From there I created a measure where the time can aggregate as a total.  The Time column properly reflects the hh:mm column and is formatted as 13:30 (h:nn).  The issue is the total is not adding correctly.  It should display as 40:00.  Is there something I am missing?

 

shannon8000_0-1709591753657.png

shannon8000_1-1709591764356.png

 

1 ACCEPTED SOLUTION
v-jiewu-msft
Community Support
Community Support

Hi @shannon8000 ,

Please try the following methods and check if they can solve your problem:

1.Create the simple table.

vjiewumsft_0-1709628649841.png

2.Create the new column to convert the seconds to hh:mm:ss column.

 

hh:mm:ss = 
VAR hours =
    ROUNDDOWN ( [seconds] / 3600, 0 )
VAR minutes =
    ROUNDDOWN ( MOD ( [seconds], 3600 ) / 60, 0 )
VAR seconds =
    INT ( MOD ( [seconds], 60 ) )
VAR milliseconds =
    round(MOD ( [seconds], 1 ) * 100,0)
RETURN
    FORMAT(hours,"00") & ":"
        & FORMAT(minutes, "00")
        & ":"
        & FORMAT(seconds, "00")

 

3.Create the new measure to calculate the time total.

 

Total Time = 
VAR TotalSeconds = SUMX('Table', HOUR('Table'[hh:mm:ss]) * 3600 + MINUTE('Table'[hh:mm:ss]) * 60 + SECOND('Table'[hh:mm:ss]))
RETURN FORMAT(TotalSeconds / 86400, "hh:mm")

 

4.Drag the measure into the table visual. The result is shown below.

vjiewumsft_1-1709628711572.png

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

 

 

View solution in original post

2 REPLIES 2
v-jiewu-msft
Community Support
Community Support

Hi @shannon8000 ,

Please try the following methods and check if they can solve your problem:

1.Create the simple table.

vjiewumsft_0-1709628649841.png

2.Create the new column to convert the seconds to hh:mm:ss column.

 

hh:mm:ss = 
VAR hours =
    ROUNDDOWN ( [seconds] / 3600, 0 )
VAR minutes =
    ROUNDDOWN ( MOD ( [seconds], 3600 ) / 60, 0 )
VAR seconds =
    INT ( MOD ( [seconds], 60 ) )
VAR milliseconds =
    round(MOD ( [seconds], 1 ) * 100,0)
RETURN
    FORMAT(hours,"00") & ":"
        & FORMAT(minutes, "00")
        & ":"
        & FORMAT(seconds, "00")

 

3.Create the new measure to calculate the time total.

 

Total Time = 
VAR TotalSeconds = SUMX('Table', HOUR('Table'[hh:mm:ss]) * 3600 + MINUTE('Table'[hh:mm:ss]) * 60 + SECOND('Table'[hh:mm:ss]))
RETURN FORMAT(TotalSeconds / 86400, "hh:mm")

 

4.Drag the measure into the table visual. The result is shown below.

vjiewumsft_1-1709628711572.png

Best Regards,

Wisdom Wu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

 

 

lbendlin
Super User
Super User

Why 40 ?  Time is in hours and minutes.  Your data adds up to  40 hours which will display as 1 day 16 hrs  0 minutes or 16:00  (because the time format drops the day component).  It should certainly not display 23:50  - most likely your list contains other data that you are not showing.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.