Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is it possible to skip some portions of statements or a whole tab in Qlikview load script. For example
If(FileSize(xyz.qvd)>0
goto 102
)
where 102 is a line number.
I want to know if there is any execution control statements in Qlikview
Regards
Arif
you could put the portion of the text to be skipped in an if .... then .... endif statement.
Hi,
You can write some thing like
IF FileSize(xyz.qvd) > 0 THEN
statements....
END IF
Hope this helps
Thanks & Regards