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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!