Hey @qfactor2013 in my opinion if you are dealing with more condition try to use Switch Activity.or if you only want to deal with IF activity you can use more IF activity like 1-IF check is condition is true or not if it is not true then in the Else you can put one more IF activity. but the best is to go with switch activity.
@qfactor2013 yes you can use Else IF activity as well but i recommend you to go with Switch activity. because it better deal with when you have multiple condition..
Chiming in here.
If/Else chains and Switch serve different purposes, and are not interchangeable.
You can only switch on specific variable by its value, while if’s can be any conditions.
Sure, “streamlining” the value can be beneficial (f.e. pass it through a classification and switch on the category), but is not always practical.
For example, you can’t do something like this in a switch without making the switch redundant.