Inline switch function with numeric operators

Hi Makers, it is possible to use a numeric operator like greater/less than in an inline switch formula? When I save the module, it removes the operators. I guess no other option than to use nested IF conditions in such a case? Thanks!

{{switch(1.Value; <4; A; <8; B; <15; C)}}

Hi @Zbulo
You can utilize if function like this:


{{if(380.value < 4; “A”; if(380.value < 8; “B”; if(380.value < 15; “C”)))}}

Regards,
Msquare Automation - Gold Partner of Make

Free Consultation | Live Implementation

Visit us here | Youtube Channel

2 Likes