Forum Discussion
Anonymous
3 years agoNot applicable
Switch function for percentage
How to use Switch function for 20 to 40 Percentage and 40 to 100 percentage in same function.
vicky_
Super User
3 years agoSWITCH( TRUE(),
[PercentageMeasure] > 0.4 && [PercentageMeasure] <= 1, "Something here",
[PercentageMeasure] > 0.2 && [PercentageMeasure] <= 0.4, "Something else"
)