Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Kindly guide.
Solved! Go to Solution.
Maybe you can modify your Measure:
sessions_MoM = VAR MoM=SUM(all_traffic[sessions]) / [sessions_PM] - 1 RETURN IF ([MoM]=0,BLANK(),[Mom])
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.