Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
daveauk
Advocate I
Advocate 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])

/

CALCULATE(ARAgingBucketsAnes[60day+bucket],PREVIOUSMONTH(DateTable[DateKey]))

 

noSubtract.png

 

 

 

 

 

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

 

wSubtract.png

 

 

 

 

 

 

Any help to remove the columns for months without data after subraction would be helpful.

 

Thanks.

 

DA

1 REPLY 1
v-haibl-msft
Microsoft Employee
Microsoft Employee

@daveauk

 

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

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.