Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
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