Rule Engine used for Formulas not String Solution

Thanks so much.

I am looking at a challenge with the “Rule Engine Node”
For Example…
//

When the values in Col0 are greater than 0, we [assign]

This is a comment $Col0$ > 0 => “Positive”

When the values in Col0 = Active and less or equal to 5 then, we [assign]
$Col0$ = “Active” AND $Col1$ <= 5 => “Outlier”

.
It appears to apply rules and will allow for the condition to be a “String” like Positive or Outlier.

I am needing the condition to be a Formula from the Columns in the table instead.

When the values in Col0 are greater than 0, we [assign]

This is a comment $Col0$ > 0 => $Col1$ * 5

When the values in Col0 = Active and less or equal to 5 then, we [assign]
$Col0$ = “Active” AND $Col1$ <= 5 => $Col1$ / $Col4$

Is there a node for this?
I was thinking that maybe I have to apply the Rule Engine 1st, then use the results of the Rule Engine to use a calculation from a certain column? I appreciate any insight into this challenge.