The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
65 | |
61 | |
60 | |
53 | |
30 |
User | Count |
---|---|
180 | |
88 | |
71 | |
48 | |
46 |