Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do I check in the load script if a variable is empty?
if isnull($(S)) then
.....
Doesn't work.
Hi,
The sentence is:
If IsNull(S) then
You can debug my attached file and verify the sentence.
Best regards.
Hello,
Try
If (Len($(vVar)) = 0) Then
still doesn't work.
This is the error I get:
Error in expression:
Len takes 1 parameter If (Len() = 0) Then
Hi,
The sentence is:
If IsNull(S) then
You can debug my attached file and verify the sentence.
Best regards.