Forum Discussion
daveauk
9 years agoAdvocate I
hide months without data based on calculation
I'm calculating month over month change. Visual hides months without data when only using the numerator and demoninator: 60d+Chg = CALCULATE(ARAgingBucketsAnes[60day+bucket]) / CALCU...
v-haibl-msft
9 years agoMicrosoft Employee
Please try to update the 60d+Chg measure as below. If it doesn’t work, could you please provide your table sample and the measure of 60day+bucket?
60d+Chg =
VAR Temp =
CALCULATE ( ARAgingBucketsAnes[60day+bucket] )
/ CALCULATE (
ARAgingBucketsAnes[60day+bucket],
PREVIOUSMONTH ( DateTable[DateKey] )
)
RETURN
( IF ( Temp <> BLANK(), Temp - 1 ) )Best Regards,
Herbert