Hello, I'm still very new to Power BI and teaching myself with small projects.
Currently I am trying to create a report to look at an application configuration table. I've included a simplified generized version here:
Category 1 | Category 2 | Attribute Type | Attribute Value |
A | U | Attribute 1 | 156 |
A | U | Attribute 2 | 250 |
A | W | Attribute 1 | 134 |
A | Attribute 1 | 121 | |
B | Attribute 2 | 210 | |
B | Attribute 3 | 3300 | |
B | Attribute 4 | 175 | |
B | Attribute 5 | 720 | |
C | Attribute 1 | 132 | |
D | Attribute 3 | 3500 | |
E | Attribute 4 | 56000 | |
E | Attribute 7 | 1500 | |
Attribute 1 | 100 | ||
Attribute 2 | 200 | ||
Attribute 3 | 2500 | ||
Attribute 4 | 134 | ||
Attribute 5 | 550 | ||
Attribute 6 | 44000 | ||
Attribute 7 | 1200 |
Category 1 |
A |
B |
C |
D |
E |
F |
G |
Category 2 |
T |
U |
V |
W |
X |
Y |
Z |
Solved! Go to Solution.
I think this tutorial is a good start: https://apexinsights.net/blog/or-xor-slicing
Basically, you'll need to create some new tables (to use in the slicers) and use DAX to return the rows meeting your conditions. In your case, you might need to use the ISFILTERED() to include blank values.
Thank you! Perfect tutorial to learn the underlying principles. I laughed at how close my own examples were to the ones the author uses. Thanks again!
I think this tutorial is a good start: https://apexinsights.net/blog/or-xor-slicing
Basically, you'll need to create some new tables (to use in the slicers) and use DAX to return the rows meeting your conditions. In your case, you might need to use the ISFILTERED() to include blank values.