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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

ErrorMode = 0

If I Write in the Script

Set Errormode = 0

what would be the result ?

Thanks

Madhu

2 Replies
prma7799
Master III
Master III

" By setting ErrorMode =0 QlikView will simply ignore the failure and continue script execution at the next script statement"....

This variable determines what action is to be taken by QlikView when an error is encountered during script execution. By default (ErrorMode=1) the script execution will halt and the user will be prompted for action (non-batch mode). By setting ErrorMode =0 QlikView will simply ignore the failure and continue script execution at the next script statement. By setting ErrorMode =2 QlikView will trigger an "Execution of script failed..." error message immediately on failure, without prompting the user for action beforehand.

Example:

set ErrorMode=0;

tresesco
MVP
MVP

No result by itself. It supresses error messages(if any) during load and fail silently. See Error Handling in Qlikview for more in details.