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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
shannon8000
Frequent 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
Anonymous
Not applicable

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
Anonymous
Not applicable

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.