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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Ramu_i
Creator II
Creator II

DB records are there it will load the data other wise load the already loaded data

Hi All,

I have a app, scheduling the data every day at 4:00 PM, In DB some times data is not loaded for scheduling time, that time dashboard shows 0 records, In this situation if data is not loaded (DB has '0 ' records, or DB data is processing(Loading)), it will display the previous loaded data, if data is there then reload the data.

Advance thanks.

Ram

4 Replies
Ramu_i
Creator II
Creator II
Author

Hi Anat,

Is there other way,  using the if condition?

Thank You.

Ram

Joseph_Musekura
Support
Support

Hi @Ramu_i ,

You can for example store the loaded data in a file (qvd for example), check the size of the QVD file using  "FileSize()>0" and repeat the process if the size is null

IF (FileSize('test.qvd')>0) THEN

ENF IF;
 

Ramu_i
Creator II
Creator II
Author

Hi Joseph,

I tried ,But it's not working.

Ram