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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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