Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello qlikers 🙂 ,
Is there a option where I can question if a certian variabel is available or not.
For example
SET variable_test = 'something';
IF (variable_test NOT EXIST) (
// Do nothing
)
// When variable_test exist then do this
ELSE (
// to something
// script should be here
)
ENDIF
//SET variable_test = 'something';
IF (variable_test NOT EXIST) (
// Do nothing
// script should be here
)
// When variable_test exist then do this
ELSE (
// to something
)
ENDIF
Thank you in advance! 🙂
Try like:
If Isnull(variable_test) then
do something for not existing the variable...