This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 April 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 |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 36 | |
| 29 | |
| 22 | |
| 22 |