how to find the not null condition?
Try variable is not Nothing
1 Like
Try this:
Not isNothing(youvariable)
1 Like
Use below condition in IF statement to check not Null
Not String.IsNullOrEmpty(yourVariable)
2 Likes