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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
HenryJS
Post Prodigy
Post Prodigy

SUM Time Field

Hi all,

 

Is it possible to SUM a Time field?

 

Below I have summed [Rest Time 2] but instead of correctly adding up the times it gives an incorrect time

 

Capture.PNG

5 REPLIES 5
Anonymous
Not applicable

@HenryJS 

 

You cannot get the sum of the time value with Groupby() table because currentgroup() is referring to the current row instead of all(table). 

 

Try use summarize():

Table = Summarize('Engage Timesheet Export',
                  'Engage Timesheet Export'[Worker Name],
                  'Engage Timesheet Export'[Week Ending],
                  "Total Rest Time",Sumx(All('Engage Timesheet Export'),[Rest Time2]))

 

Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@Anonymous this summarised the rest times and gave the same value for everyone - please see below

 

 

Capture.PNG

Anonymous
Not applicable

@HenryJS 
I guess I misunderstood you requirement. I only see the incorrect sum time. You may add filters to set context.

 

Table = Summarize('Engage Timesheet Export',
                  'Engage Timesheet Export'[Worker Name],
                  'Engage Timesheet Export'[Week Ending],
                  "Total Rest Time",Sumx(All('Engage Timesheet Export'),[Rest Time2]))

 

Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hey there. I find that when dealing with time, it's always best to use a decimal number for times, instead of actual times; especially when adding and subtracting. My advice would be to change your time column to type number, write the measure, and then change the measure display type to h:mm:ss or if the sum is over 24 hrs, [H]:mm:ss. Should work!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 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.

Top Solution Authors
Top Kudoed Authors