Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
carolin01
Partner - Creator II
Partner - Creator II

Interrupt the script load

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!

1 Solution

Accepted Solutions
markodonovan
Specialist
Specialist

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


View solution in original post

2 Replies
markodonovan
Specialist
Specialist

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


carolin01
Partner - Creator II
Partner - Creator II
Author

Perfect - that it