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, honestly Im coming here as a desperate DAX noob and I hope somebody can help me 🙂
I have a live connection (so Im not able to edit/add columns) in my report with many pages. I got a request to exclude a specific type of products from one group, from the entire report. Let's say, I have group of products X, Y, Z, next I have a layer for each group with the types of products A B C. What I want to achieve is to exclude type A from group X only.
I know that I cannot apply filters with an IF statement also I can't apply measure as a filter as long as it's not a calculated measure (but that would require writing new measures for each value I have in charts). Please correct me if I'm wrong.
What could be the best efficient way to apply that exclusion? I don't want to apply it on each chart separately and write measures for each value. Many thanks in advance!
Solved! Go to Solution.
Hi,
You can use filter measure combined with a calculation group to achieve this. E.g.
Table:
calculation group:
calculate(selectedmeasure(),FILTER('Table (9)',[Filter Measure for Q2 and Q3] = 1))
This approach will filter the target table based on the if logic. So in this case My visual will only show Q2 and Q3 values:
Edit, here is a link to an article by SQLBI about calculation groups:
Introducing Calculation Groups - SQLBI
Proud to be a Super User!
Hi,
You can use filter measure combined with a calculation group to achieve this. E.g.
Table:
calculation group:
calculate(selectedmeasure(),FILTER('Table (9)',[Filter Measure for Q2 and Q3] = 1))
This approach will filter the target table based on the if logic. So in this case My visual will only show Q2 and Q3 values:
Edit, here is a link to an article by SQLBI about calculation groups:
Introducing Calculation Groups - SQLBI
Proud to be a Super User!
User | Count |
---|---|
14 | |
12 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
13 | |
8 | |
5 |