05-04-2023, 04:45 PM
You will need an additional "END IF" for the first example shown above. That is only if the inside "IF... THEN" were also a block, placed after the first "ELSE".
I could think of a situation where I would have to work this block instead of the other one but can't show it to you right now. The second block is more like using "SELECT... END SELECT" but could involve more than one variable being compared.
Code: (Select All)
IF A THEN
:
ELSE
IF B THEN
:
ELSE
:
END IF
END IF
I could think of a situation where I would have to work this block instead of the other one but can't show it to you right now. The second block is more like using "SELECT... END SELECT" but could involve more than one variable being compared.