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: 
siva_boggarapu
Creator II
Creator II

How to divide QVD table into Two parts?

Hello There,

I have one QVD table in Qlikview Report. I want to make this QVD into two parts. One QVD should load last 3 months data and 2 nd QVD should load last 3 days data. How come it is Possible?

Best,

Siva.

1 Solution

Accepted Solutions
Jason_Michaelides
Partner - Master II
Partner - Master II

Maybe try:

Table1:

Load

   *

From QVDFile(qvd)

Where DateField >= AddMonths(Today(),-3);

Table2:

NoConcatenate

Load

   *

From QVDFile(qvd)

Where DateField >= Today()-3;

Hope this helps,

Jason

View solution in original post

1 Reply
Jason_Michaelides
Partner - Master II
Partner - Master II

Maybe try:

Table1:

Load

   *

From QVDFile(qvd)

Where DateField >= AddMonths(Today(),-3);

Table2:

NoConcatenate

Load

   *

From QVDFile(qvd)

Where DateField >= Today()-3;

Hope this helps,

Jason