Hi
I would like to write an if condition that has multiple operations to be performed once true. The conditions are as follows:
I have three columns A, B, and C. I need to move values within these 3 columns depending upon null/blank conditions like below:
If A = null and B is not equal to null, THEN
A=B
B=C
C= null
else if A = null and B = null and C is not equal to null, THEN
A = C
B = C = Null
else
[A]
endif
Can someone please advice on how to perform multiple THEN operation?