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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello. I have Amount From and Amount To columns in my data table. Need the slicer to filter all rows that meet this value. For example, if i have value 1000, need to filter all rows, there 1000 is between values Amount From and Amount To.
Solved! Go to Solution.
@daliux , Take a what if parameter or create independent slicer using a table using generate series
new measure =
var _sel = selectedvalue(whatif[Value]) //or use whatifmeasure
return
calculate(sum(Table[bitdamount]), filter(Table, Table[Amount from] >=_sel && Table[Amount to] <= _sel ))
https://docs.microsoft.com/en-us/power-bi/desktop-what-if
@daliux , Take a what if parameter or create independent slicer using a table using generate series
new measure =
var _sel = selectedvalue(whatif[Value]) //or use whatifmeasure
return
calculate(sum(Table[bitdamount]), filter(Table, Table[Amount from] >=_sel && Table[Amount to] <= _sel ))
https://docs.microsoft.com/en-us/power-bi/desktop-what-if