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: 
Not applicable

How to check if connected to ODBC? Then proceed excel file.

Hi,

How to do that? If not connected to odbc then read excel files.

2 Replies
Anonymous
Not applicable
Author

You could use Set Errormode = 0; and then if the connection string fails you can instead load excel files using this after your connection string:

if ScriptError>0 then

LOAD EXCEL FILES LOGIC

end if

Not applicable
Author

done. Thanks.