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.
I have a matrix on brand and country.
Now I want let the user choose If they want to see the generic cost. I prefer not to have a slicer with all the brands. (Generic is a brand in this case).
This is what I tried, but it gives me an empty matrix:
ReportFilter = IF(HASONEVALUE(ReportFilters[ReportFilters]), SWITCH(VALUES(ReportFilters[ReportFilters]), "All", [Total AdwordsCost], "All(eclusief Generic)", CALCULATE([Total AdwordsCost], FILTER('Brands','Brands'[Brand] <> "Generic")) ),
Please help me out.
Solved! Go to Solution.
Hi @Anonymous,
Based on my test. Your formula worked well in my side. Also I create another measure to work on it, it worked well as well.
Measure = var sele = SELECTEDVALUE(ReportFilters[ReportFilters]) return IF(sele="All",[Total AdwordsCost],IF(sele="All(eclusief Generic)",CALCULATE(SUM(Brands[Column3]),FILTER(Brands,'Brands'[Brand] <> "Generic"))))
For more details ,please check the pbix as attached.
Regards,
Frank
Hi @Anonymous,
Could you please share your sample data and excepted reuslt to me. You can upload your files to one drive and share the link to me.
Regards,
Frank
Hi @Anonymous,
Based on my test. Your formula worked well in my side. Also I create another measure to work on it, it worked well as well.
Measure = var sele = SELECTEDVALUE(ReportFilters[ReportFilters]) return IF(sele="All",[Total AdwordsCost],IF(sele="All(eclusief Generic)",CALCULATE(SUM(Brands[Column3]),FILTER(Brands,'Brands'[Brand] <> "Generic"))))
For more details ,please check the pbix as attached.
Regards,
Frank
User | Count |
---|---|
65 | |
60 | |
60 | |
53 | |
27 |
User | Count |
---|---|
181 | |
88 | |
70 | |
48 | |
46 |