rule engine

how can I program rule engine to change all the columns of " arrollado de canela" un put a number in the column of code

to this

Hi @cris , here you go:

$Producto$ = "arrollado de canela" => 50
TRUE => $#$

The condition is case sensitive though, mean that if your value is actually “Arrollado de canela” as per your screenshot, then you should use:

$Producto$ = "Arrollado de canela" => 50
TRUE => $#$

Please do pay attention to what you write. If you do not write the same values as you have in the screenshot, this can prevent the rule from working.

And make sure you Replace the column code:
image

1 Like

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