I've been using conditions for a while now. Conditions only allows one comparison and then it goes either to a TRUE branch or FALSE branch. What if I need > 2 branches? E.g. is there a way to implement that without putting a condition inside a condition?
Let's say, I have VALUE1, VALUE2, VALUE3, and VALUE4. I'd like 4 branches for each VALUE without me doing 4 layers of TRUE/FALSE compares.
Is there a way?