Forum Discussion
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 | Status | Hours |
| Oct | Substantive Filled | 01:00:00 |
| Oct | Filled | 01:00:00 |
| Oct | Filled | 01:01:00 |
| Oct | Substantive Filled | 02:00:00 |
my hourscolumn is formatted as below
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.
6 Replies
- adudani
Memorable Member
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.
- Dougers1Frequent Visitor
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
- Dougers1Frequent Visitor
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 timeVAR _Hour = HOUR( SELECTEDVALUE( Interpreting[Hours] ) )//Find minute as proportion of hourVAR _Minute = DIVIDE(MINUTE( SELECTEDVALUE( Interpreting[Hours] ) ), 60, 0 )//Add togetherVAR _Result = _Hour + _MinuteRETURN_ResultthenDuration Sum v2 = SUMX( Interpreting, Interpreting[Duration Hour Minute] )but it bringing back differnt sums??
- AnonymousNot applicable
Hi Dougers1,
You can create a measure as follows.
total hours = CALCULATE(SUM('Table'[Hours]),FILTER('Table', 'Table'[Status] = "Substantive Filled"))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.
- Dougers1Frequent Visitor
bringing back wrong sum ?