Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
Is it possible to create a threshold slicer based on a raw column value?
I have a column with values [10,20,30,40,50,60]. I want to create a slicer such that the value selected capture everything greater than or equal to it, i.e. if I select "10", then all data points with a column value >10 are visualized; if I select "50", only data points with a column value of 50 or 60 are visualized.
Is this possible, without having to create a parameter and reset it each time?
If the only was is to create a parameter, is it possible to change this parameter once I publish this report and create a dashboard?
Solved! Go to Solution.
@swong,
Firstly, create a calculated table using the DAX below.
ValueTables = VALUES(Table[Column1])
Secondly, create a measure in your original table.
expectedresult = CALCULATE(SUM(Table[Column1]),FILTER(Table,Table[Column1] >= FIRSTNONBLANK(ValueTables[Column1],1)))
Thirdly, create a slicer using the column of the newly created table.
Regards,
Lydia
@swong,
Firstly, create a calculated table using the DAX below.
ValueTables = VALUES(Table[Column1])
Secondly, create a measure in your original table.
expectedresult = CALCULATE(SUM(Table[Column1]),FILTER(Table,Table[Column1] >= FIRSTNONBLANK(ValueTables[Column1],1)))
Thirdly, create a slicer using the column of the newly created table.
Regards,
Lydia
@swong,
Click the "New Table" option and apply the DAX formula I provide.
Regards,
Hi @v-yuezhe-msft,
I see, thanks!
I created a sample .pbix with Delta values that are not bucketized. Is there a way to still apply the threshold slicer and display the raw column values? Here is the .pbix file: https://microsoft-my.sharepoint.com/:u:/r/personal/t-sewong_microsoft_com/_layouts/15/guestaccess.as...
Currently, the slicer doesn't filter the values showen, it just filters which rows show the slicer value.
@swong,
Create your table visual as follows.
Then use the column in the ValueTables to create slicer.
Regards,
Lydia
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
70 | |
55 | |
37 | |
31 |
User | Count |
---|---|
83 | |
64 | |
63 | |
49 | |
45 |