Forum Discussion
Anonymous
5 years agoNot applicable
Dynamic Filters
For example, I have a column A with numbers, and I want to calculate +/- X% of Column A. I would like two have two slicers one as a drop for X% (5%, 10%, 15%, etc) and another slicer which will give ...
amitchandak
5 years agoSuper User
Anonymous , Can you share sample data and sample output in table format?
- Anonymous5 years agoNot applicable
- amitchandak5 years agoSuper User
Anonymous , if the slicer is on % column
measure =
var _max =selectedvalue(slicer[value])
return
calculate(sum(Table[A])*(1+_max))Absolute number
measure =
var _max =selectedvalue(slicer[value])
return
calculate(sum(Table[A])*((1+_max)//100))