Forum Discussion
Measure help required
- Anonymous5 years ago
Hi harshadrokade .
You can use
measure=IF(table name[column name]<=30,"Low",
IF(table name[column name]>70,"High","Medium")).Regards,
Sanket Bhagwat.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- 5 years ago
harshadrokade, Anonymous's formula will work but I would recommend using SWITCH(TRUE()...) syntax as it tends to be cleaner. Also, place your most likely cases first as this will optimize performance.
Hi harshadrokade .
You can use
measure=IF(table name[column name]<=30,"Low",
IF(table name[column name]>70,"High","Medium")).
Regards,
Sanket Bhagwat.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.