Hi you all !!!
Hi. I have a value range like from 185 to 210 is SMALL, from 210 to 235 is BIG, and from 235 to 259 is VERY BIG.
How can I do that with and "if" expression?
Like always, thanks in advance
Solved! Go to Solution.
You can use IFS() instead.
The first conditional statement is less than 210 and a second condition is less than 235 in IFS().
Any numbers below 185 are also evaluated as big but I assume you don't have such cases because you have not identified any classification for those numbers.
you mean the label should be blank?
IFS(
[col]<185, "",
[col]<210,"BIG",
[col]=<235,"VERY BIG",
[col]>235,""
)
Note: Please mark only the post that actually solves your issue.
User | Count |
---|---|
20 | |
16 | |
4 | |
3 | |
2 |