Forum Discussion
Slicer threshold based on raw column value
- Anonymous9 years ago
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
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.