Hi All,
This is my case, I have an IF statement that depends on one field like:
IF a = b then
ENDIF
I need to understand how to include multiple fields being affected by the IF when True or false happens, like:
IF a = b then
Z = 1;
Y = 2;
W = 3;
ELSE
Z = 8;
Y = 9;
W = -1;
ENDIF
Please take the numbers assignments as an example only. In the real scenario those values would be some strings.
thank you