Forum Discussion
NessFlood
Helper I
9 months agoMISSING CALCULATION IN CUMULATIVE DAX
I am using the formula below to calculate cumulative data but when there are weeks with both "Complete" and "Overdude" figures, the forumula doesn't work - your help is much appreciated 😃 MEASU...
- 9 months ago
worrked a treat, thank you so much 😃
Arul
Super User
9 months agotry this formula
CALCULATE(
COUNTROWS(
FILTER(
ALLSELECTED('CBR_REPORT'),
'CBR_REPORT'[DDS280 Pre-Build SDD Review Complete With NGCC FC Status] = "Complete"
&& 'CBR_REPORT'[DDS280 Pre-Build SDD Review Complete With NGCC FC] <= MAX('CBR_REPORT'[DDS280 Pre-Build SDD Review Complete With NGCC FC])
)
)
)- NessFlood9 months ago
Helper I
worrked a treat, thank you so much 😃