Hello,
I'm trying to categorize the number of students into three buckets based on their eye sight.
S = from > 10 to 20
M = from >20 to 30
L= from >50
IF [Count of students]>10 THEN "S"
ELSEIF [Count of students]>20 THEN "M"
ELSEIF [Count of students]>50 THEN "L"
ELSE "N/A" ENDIF
When I run the results, I cannot capture the M and L using the above formula. Wonder if I miss anything?