Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
swong
Helper II
Helper II

Slicer threshold based on raw column value

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?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@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.
1.JPG

Regards,
Lydia

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

@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.
1.JPG

Regards,
Lydia

Hi @Anonymous,

 

Thanks for the help!

 

How do I create a calculated table?

Anonymous
Not applicable

@swong,

Click the "New Table" option and apply the DAX formula I provide.

Regards,

Hi @Anonymous,

 

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.aspx?share=EXUkrC_4_PFPoZXKTYQuaRIBv6r3QZVj1AB6I59UlgumSw

 

Currently, the slicer doesn't filter the values showen, it just filters which rows show the slicer value.

Hi @Anonymous,

 

Checking in about this question.

 

Thanks!

Anonymous
Not applicable

@swong,

Create your table visual as follows.
1.JPG

Then use the column in the ValueTables to create slicer.
2.JPG

Regards,
Lydia

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors