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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
stekol61
Creator
Creator

Disable errors

Hi!

I have an Sense app that loads data from csv files.

The problem is that a file somtimes is empty and then the app chrases.

Is there a way to avoid that the app chrashes even if some files are empty?

 

 

Labels (1)
1 Solution

Accepted Solutions
Nags
Partner - Contributor III
Partner - Contributor III

SET ErrorMode = 0; // disable all errors

<Your code to load csv files here>

SET ErrorMode = 1; // enable all errors

View solution in original post

1 Reply
Nags
Partner - Contributor III
Partner - Contributor III

SET ErrorMode = 0; // disable all errors

<Your code to load csv files here>

SET ErrorMode = 1; // enable all errors