Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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