Forum Discussion
ilcaa72
Helper IV
8 years agoLimit calculated Column values for a slicer
hello, i have a calculated column that i want to use as a slicer, but i only want a range of the values... i create this formula but receive error... if someone could help with formula or best wa...
ilcaa72
Helper IV
8 years agothanks, any idea why my calculated column does not appear as an option??
v-cherch-msft
Microsoft Employee
8 years agoHi ilcaa72
You may try to use below measure:
threshold =
IF (
MAX ( test[diff] ) >= -5
&& MAX ( test[diff] ) <= -.50,
MAX ( test[diff] ),
BLANK ()
)Regards,
Cherie