How to apply if else in rule engine?
Rows in the Rule Engine
are evaluated one-by-one from top to bottom. So if you want to have the last statement to be triggered in all residual cases (for example else
in if-else structure) you can simply put TRUE => your_desired_output
instead of NOT (your_condition) => your_desired_output
. This way, if you change your_condition
in the future you won’t need to change it in two places.
6 Likes
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.