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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
aJ2
Helper I
Helper I

MoM measure displaying -100% when value is not present for this month as well as current month

Hi.

 

I have created a MoM measure-

1. sessions_MoM = SUM(all_traffic[sessions]) / [sessions_PM] - 1

 

 

2. sessions_PM_all = CALCULATE(SUM(all_traffic[sessions]), PREVIOUSMONTH('date'[date_key]))

 

The first image is the one where a filter is applied and the second image is the one where no filter is applied. 

 

One possible solution is that I can create a visual filter to exclude the ones where the value is -1. But I want some workaround so that there is no need to use the visual filter.

img1.PNGimg2.PNG

 

Kindly guide.

1 ACCEPTED SOLUTION
Floriankx
Solution Sage
Solution Sage

Maybe you can modify your Measure:

 

sessions_MoM = 
VAR MoM=SUM(all_traffic[sessions]) / [sessions_PM] - 1
RETURN
IF ([MoM]=0,BLANK(),[Mom])

View solution in original post

2 REPLIES 2
Floriankx
Solution Sage
Solution Sage

Maybe you can modify your Measure:

 

sessions_MoM = 
VAR MoM=SUM(all_traffic[sessions]) / [sessions_PM] - 1
RETURN
IF ([MoM]=0,BLANK(),[Mom])

Thank you so much

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors