Two Logic Functions in an Expression?

Hi, is it possible to have two Logic Functions, such as a ‘switch’ and an ‘if’ statement in a single Expression? I’m assuming not since I can’t get it to work but maybe I’m just doing something wrong?

It is possible. For example:if(1=1, if(2=2,"yep","nope"), "nope")Switch and if can be nested in each other as well. For example:if(1=1, switch("mm","mm","dd",if(5=4,"is mm","not mm"),"is dd","default"), "nope")Best,

1 Like

Great, thanks!