This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi there
I want to create a measure for PVR benchmark, that displays different values for the Grouping Level (see below screen shot).
The first category is State
The second category is Site
The third category is Product
Each product listed is either Luxury or Non Luxury.
If a product is Luxury, the benchmark should be $1000.
If a product is Non Luxury, the benchmark should be $350.
If you are looking at the Site or State result total, the benchmark should be $550.
So in my example below, if the products are Non Luxury, I want each product line to show $350 instead of $550.
Any help would be appreciated.
Thanks.
Melanie
Solved! Go to Solution.
@melanie-g , Based on what I got a new measure
A new measure = Switch(True() ,
isinscope([Product Type]) && Max(Table[Product Type])= "Luxury" , 1000 ,
isinscope([Product Type]) && Max(Table[Product Type])= = "Non Luxury" , 350,
550)
How to use insinscope
IsInScope - Switch Rank at different levels: https://youtu.be/kh0gezKICEM
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
@melanie-g , Based on what I got a new measure
A new measure = Switch(True() ,
isinscope([Product Type]) && Max(Table[Product Type])= "Luxury" , 1000 ,
isinscope([Product Type]) && Max(Table[Product Type])= = "Non Luxury" , 350,
550)
How to use insinscope
IsInScope - Switch Rank at different levels: https://youtu.be/kh0gezKICEM
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 23 | |
| 19 |