Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I need your help with a measure I have created which calculate a specific rate.
I would like to have a dynamic filter for which If I click (top left) on [0-20], I only have in the tab values below 20%. Same for [20-50]...
I could not group the data due to the fact that I have a DAX measure...
Could you please help me ?
Solved! Go to Solution.
Hi @Anonymous ,
Try to create a measure like below and replace your measure with it in the Matrix visual.
Measure =
SWITCH (
SELECTEDVALUE ( 'YourTable'[Column1] ),
"[0-20]", IF ( [YourMeasure] < 0.2, [YourMeasure] ),
"[20-50]", IF ( [YourMeasure] < 0.5, [YourMeasure] ),
[YourMeasure]
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Hi @Anonymous ,
Try to create a measure like below and replace your measure with it in the Matrix visual.
Measure =
SWITCH (
SELECTEDVALUE ( 'YourTable'[Column1] ),
"[0-20]", IF ( [YourMeasure] < 0.2, [YourMeasure] ),
"[20-50]", IF ( [YourMeasure] < 0.5, [YourMeasure] ),
[YourMeasure]
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Hi M92240
You can create a custon collum in your table with conditional related a value to yours paramters the filter, like:
custoncolumn = IF(tABLE1[COLUMN]<=20,"A",IF(tABLE1[COLUMN]<=60,"B","C"))
After, you put that collum in the filter.
See you.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
65 | |
64 | |
56 | |
39 | |
27 |
User | Count |
---|---|
85 | |
59 | |
45 | |
43 | |
38 |