Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading QVDs

Hi Experts

I have Sales QVDs for  2015 Month Wise

and my current month sales QVDs got updated Daily

 

Sales_2015_01
Sales_2015_02
Sales_2015_03
Sales_2015_04
Sales_2015_05
Sales_2015_06
Sales_2015_07

Now I loaded my QVDs into my QVW

My QVW get reloaded in the Daily basis in QMC

Every Time its reloading from the beginning of the year

I don't want to  do an incremental load,

Is there a way of making my Current Month sales data only got reloaded in My QVW

Please Suggest

1 Solution

Accepted Solutions
sunny_talwar

What if do this:

LET vFile = 'Sales_' & Year(Today()) & '_' & Month(Today());

and then use it like this may be

FROM $(vFile).qvd (qvd);

View solution in original post

6 Replies
sunny_talwar

What if do this:

LET vFile = 'Sales_' & Year(Today()) & '_' & Month(Today());

and then use it like this may be

FROM $(vFile).qvd (qvd);

Gysbert_Wassenaar

If you have Qlikview Publisher you can try using a Partial Reload. You'll probably won't add anything but complexity though. You can find an example here: https://community.qlik.com/docs/DOC-5427


talk is cheap, supply exceeds demand
Not applicable
Author

HI Sunny

I made slight change in the script for defining the variable Month in Num

LET vFile = 'SALES_' & Year(Today()) & '_' & NUM(Month(Today()));

Capture.JPG

I actual file path is SALES_2015_07

how can i achieve this

sunny_talwar

Try this:

LET vFile = 'SALES_' & Year(Today()) & '_' & Num(Month(Today()), '00');

Not applicable
Author

HI sunindia & Gysbert Wassenaar

Thanks For your Help!

sunny_talwar

No problem Bud

Glad we were helpful.

Best,

Sunny