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