Forum Discussion
ilcaa72
8 years agoHelper IV
Limit 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
8 years agoHelper IV
thanks, any idea why my calculated column does not appear as an option??
v-cherch-msft
7 years agoMicrosoft Employee
Hi ilcaa72
You may try to use below measure:
threshold =
IF (
MAX ( test[diff] ) >= -5
&& MAX ( test[diff] ) <= -.50,
MAX ( test[diff] ),
BLANK ()
)Regards,
Cherie