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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Dougers1
Frequent Visitor

help with formula to calculate time

Hi

 

i am having issues with trying to get hours counted, i want it to return Substantive Filled total hours

Month StatusHours
OctSubstantive Filled01:00:00
OctFilled01:00:00
OctFilled01:01:00
OctSubstantive Filled02:00:00

 

my hourscolumn is formatted as below

Dougers1_0-1701101959627.png

 

1 ACCEPTED SOLUTION
adudani
Super User
Super User

HI @Dougers1 ,

create the  measure below. Replace"TimeCalc" with your table name. 

total time (hours and mins) = 
IF(SELECTEDVALUE(TimeCalc[Status]) ="Substantive Filled", 
    FORMAT( SUM(TimeCalc[Hours]),"HH:MM"),
    blank()
)

 If this doesn't resolve the issue, please provide a sample output.

 

Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a Kudos 🙂
Kind Regards,
Avinash

View solution in original post

6 REPLIES 6
v-xuxinyi-msft
Community Support
Community Support

Hi @Dougers1,

 

You can create a measure as follows.

 

 

 

total hours = CALCULATE(SUM('Table'[Hours]),FILTER('Table', 'Table'[Status] = "Substantive Filled"))

 

 

 

 

vxuxinyimsft_0-1701151990274.png

Is this the result you expect?

 

Best Regards,

Yuliax

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

bringing back wrong sum ?

adudani
Super User
Super User

HI @Dougers1 ,

create the  measure below. Replace"TimeCalc" with your table name. 

total time (hours and mins) = 
IF(SELECTEDVALUE(TimeCalc[Status]) ="Substantive Filled", 
    FORMAT( SUM(TimeCalc[Hours]),"HH:MM"),
    blank()
)

 If this doesn't resolve the issue, please provide a sample output.

 

Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a Kudos 🙂
Kind Regards,
Avinash

this is bringing me back wrong sum - its saying person A has worked 6hr 35 mins  for oct   - thats not correct answer should be 116hrs:15 mins

i added this   but it not adding them up correct sometimes it is but  other times it saying 32 hrs when it only 8

 

Duration Hour Minute =
//Find hour of time
VAR _Hour = HOUR( SELECTEDVALUE( Interpreting[Hours] ) )
//Find minute as proportion of hour
VAR _Minute = DIVIDE(MINUTE( SELECTEDVALUE( Interpreting[Hours] ) ), 60, 0 )
//Add together
VAR _Result = _Hour + _Minute

RETURN
_Result
 
then 
 
Duration Sum v2 = SUMX( Interpreting, Interpreting[Duration Hour Minute] )
 but it bringing back differnt sums??
Dougers1_0-1701613129482.png

 

The VAR result is adding hour and minutes as integer value, not a time value to which works display it in hh:mm format

 

Would you be able to share the pbix/raw data masking sensitive information?

Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a Kudos 🙂
Kind Regards,
Avinash

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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