Forum Discussion
vincentakatoh
Helper IV
9 years agoDAX: Exclude if Count is ZERO
Hi, Need help on DAX to exclude if Count= zero. Using below DAX formula. 1) PRT0_CFnFail = sum(Data[CountFnF]) <Sum of Count> 2) PRT1_AllDefectsFn = CALCULATE([PRT0_CFnFail],ALL(Data[FailDefec...
- 9 years ago
You can modify your DAX formula for (2) to be:
PRT1_AllDefectsFn = IF(ISBLANK([PRT0_CFnFail]),BLANK(),CALCULATE([PRT0_CFnFail],ALL(Data[FailDefectCode])))
cs_skit
Resolver IV
9 years agoMake Count Measure
Put Count Measure in Filter <> 0