Forum Discussion
Anonymous
3 years agoNot applicable
MTD
I'm trying to calculate billable hours for MTD. I tried the below measure however, it is showing as blank. MTD Billable = CALCULATE(SUM(Utilisation[ChargeableHours]), DATESMTD('Work Period'[D...
Anonymous
3 years agoNot applicable
Greg_Deckler I'm not sure I did the middle one right
MTD Billable Hours =
CALCULATE([Chargeable Hours],
FILTER(ALL('Work Period'[Date]),
'Work Period'[Date]=MAX('Work Date'[Date]) && 'Work Period'[Date]<= MAX('Work Period'[Date]
)))
It is still showing blank
Greg_Deckler
Community Champion
3 years agoAnonymous So the middle one requires a helper column that combines Year and Month like 202301, 202302, 202303. Basically a calculated column like YEAR('Date'[Date]) * 100 + MONTH('Date'[Date])