Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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