Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
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])
/
CALCULATE(ARAgingBucketsAnes[60day+bucket],PREVIOUSMONTH(DateTable[DateKey]))
It includes months not in the data set but in the date table when subtracting by 1 to indicate the change:
60d+Chg =
CALCULATE(ARAgingBucketsAnes[60day+bucket])
/
CALCULATE(ARAgingBucketsAnes[60day+bucket],PREVIOUSMONTH(DateTable[DateKey]))
-1
Any help to remove the columns for months without data after subraction would be helpful.
Thanks.
DA
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
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 22 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 68 | |
| 55 | |
| 45 | |
| 42 | |
| 30 |