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 want to be able to use a slicer with a numerical field to be used as a threshold when filtering other vizualisations, only taking values greater than, or less than the value in the slicer. Is this possible?
Solved! Go to Solution.
Hi @angusmglfraser,
Based on my research, this requirement cannot be achieved by using aslicer. You need to use a parameter to do it.
Query Editer>Manage Parameter
Reference
https://powerbi.microsoft.com/en-us/blog/deep-dive-into-query-parameters-and-power-bi-templates/
Regards,
Charlie Liao
Hi @angusmglfraser,
Currently, it have to be done from the "Edit queries" menu.
Regards,
Charlie Liao
Hi @angusmglfraser,
Based on my research, this requirement cannot be achieved by using aslicer. You need to use a parameter to do it.
Query Editer>Manage Parameter
Reference
https://powerbi.microsoft.com/en-us/blog/deep-dive-into-query-parameters-and-power-bi-templates/
Regards,
Charlie Liao
Can this parameter be set by some sort of interactive visual control on a page, or does it have to be done from the "Edit queries" menu?
Hi @angusmglfraser,
Currently, it have to be done from the "Edit queries" menu.
Regards,
Charlie Liao
Hi @angusmglfraser,
Yes, you can. For normal case (when user selects single filter options), i assume that you have fact table with 3 columns - 1 value column and 2 dims (MeasureA,category1,category2)
filters = VALUES(Sheet1[MeasureA])
Measure2 = CALCULATE(SUM(Sheet1[MeasureA]),FILTER(Sheet1,Sheet1[MeasureA] >= FIRSTNONBLANK('filters'[MeasureA],1) ))
but what will be displayed/logic when user selects multiple options? in this case, you could try with max or min method instead of firstnonblank()
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 192 | |
| 125 | |
| 99 | |
| 67 | |
| 48 |