Variable Comparison with ${None}

When I have to deal with None I switch to inline python evaluation. So in your case it would be:

IF ${{$x is not None}}
    Do Something
ELSE
    Do Something Else
END
2 Likes