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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
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.