Check if 2 variables are empty
-
What is the correct way to check if 2 variables are empty?
IF "<Type1> AND <Type2> EqualTo""
!something
ENDIF
-
IF ... IF ... do something ENDIF
-
Thanks Ruri master
-
Ruri if i put an else this else refers from 1st or 2nd IF?
IF "<Type1> EqualTo""
IF "<Type2> EqualTo""
do something
ELSE
do something
ENDIF
-
To the first
-
Thanks one more time master.
Maybe in the future you can add the hability to use ELSEIF
-
The future is bright, don't worry
-
not ELSE....
use ELSE IF
-
IF "<Type1> EqualTo""
do something
ELSE IF "<Type2> EqualTo""
do something
ENDIF
-
Its possible to use ELSEIF in OB?
-
This post is deleted!
-
yes.. thanks its maybe working
-