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

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.