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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
mrooney
Contributor III
Contributor III

Checking all qvds are present before loading

Hi,

here a llitle script to make sure all your qvd are in place before going ahead with the whole script. Mey be it is not optim and you might want to improve it a bit.

Hope it's useful

4 Replies
Not applicable

Thanks -Ram

Not applicable

You can use Inline table as

Input_Tables:

Load * inline [

Tables

Aqua85.qvd

Sales.qvd

Shipments.qvd

] (Delimiter is '|');

and

Let vFieldCount = FieldValueCount('Tables');

instead of hard coding the file nos. as 3.

Anyways, Your code was very useful and used with little bit clean up.

-Ram

Not applicable

Good!!

mrooney
Contributor III
Contributor III
Author

Hi ramko496.

U are totally right. Is far clean your way.

Thanks.