Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I know that there is an easy and short function to Interrupt my script and finish the load but I cannot remember. I´m currently developing a script and I would like Qlik View to stop the load after it has loaded the first table, something like "end here". I do not want to comment everything in and out everytime. Could anybody tell me what I´ve to type?
Thanks in advance!
Hi Carolin,
Try:
The exit script control statement stops script execution. It may be inserted anywhere in the script. An exit script statement can be made conditional by the optional use of when or unless clause. The syntax is:
exit script[ (when | unless) condition ]
Thanks
Mark
www.techstuffy.com
Hi Carolin,
Try:
The exit script control statement stops script execution. It may be inserted anywhere in the script. An exit script statement can be made conditional by the optional use of when or unless clause. The syntax is:
exit script[ (when | unless) condition ]
Thanks
Mark
www.techstuffy.com
Perfect - that it