Use Rule Engine Node to get the output

Hi all,

The following is the scenario which I want to accomplish using the Rule Engine Node:

image

Only if more than 1 Risk column has “Yes” in it, then return “Yes” else “No”. How can I achieve this using the rule engine node?

Thanks in advance.

hi @X24

Rule engine perfect node for this. You should define the “No” conditions and the rest will get “Yes”.

$Risk 1$ = "Yes" AND NOT $Risk 2$ = "Yes" AND NOT $Risk 3$ = "Yes" => "No"
$Risk 2$ = "Yes" AND NOT $Risk 1$ = "Yes" AND NOT $Risk 3$ = "Yes" => "No"
$Risk 3$ = "Yes" AND NOT $Risk 2$ = "Yes" AND NOT $Risk 1$ = "Yes" => "No"
TRUE => "Yes"

best
Tommy

3 Likes

Thank you for taking your time to answer the above question @tommy. The solution worked. Thanks again.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.