Forum Discussion
NessFlood
8 months agoHelper I
MISSING 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 😃
MEASURE CUMULATIVE SDD REVIEW =
IF(
MAX('CBR_REPORT'[DDS280 Pre-Build SDD Review Complete With NGCC FC Status])="Complete",
COUNTX(
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])),[Ref ID#]))
worrked a treat, thank you so much 😃
3 Replies
- ArulSuper User
try 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]) ) ) )- NessFloodHelper I
worrked a treat, thank you so much 😃
- ArulSuper User
If that works, please mark my solution as a accepted solution.