Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I'm struggling with a couple of problems in the same project and I'll post two different help request.
You can find the Problem 2 in this post: https://community.powerbi.com/t5/DAX-Commands-and-Tips/How-to-create-a-view-with-the-largest-three-v...
Problem 1.
I have a table with more than 80 Attributes, like this:
I want to create a page with a simple view for each attribute, like this:
But, with an important difference. Each view must show only rows with the attribute value greater than a value chosen by the user (a threshold value). For instance, if the user choose the value 58%, the page should look like this:
So, each different attributes is filtered by the same value.
Things are even harder, because I need the threshold value to be a variable.
If it is the only viable solution, I can accept to put the threshold value in an Excel sheet given in input to Power BI (so I can change it) and refresh Power BI every time I need to change the threshold.
I would really appreciate any help.
Thank you
Solved! Go to Solution.
At the end, I worked around your suggestion to use Whatif[value].
I need to create a measure for each Attribute (Sigh!!!), like this:
@Sixian , assuming Whatif[value] is your slicer. You need to have these three measures in you tables
assumes Attribute1 , Attribute2, Attribute3 are measures, or use Sum/Average or those
calculate([Attribute1], filter(Values(Table[Name]), [Attribute1] >=selectedValue(Whatif[value])))
calculate([Attribute2], filter(Values(Table[Name]), [Attribute2] >=selectedValue(Whatif[value])))
calculate([Attribute3], filter(Values(Table[Name]), [Attribute3] >=selectedValue(Whatif[value])))
At the end, I worked around your suggestion to use Whatif[value].
I need to create a measure for each Attribute (Sigh!!!), like this:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |