Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ajsjoshua
Specialist
Specialist

Upload qvd

Hi Guys,

anyone pls upload a qvd where you have done many set analysis work like flags and so on.

its for my reference purpose.

Regards,

Joshua.

4 Replies
avinashelite

for your information set analysis won't work in the Qlikview script .....you need to use the conditional and transformation functions to create the flags and finally you need to store the same for your qvd.

Hope this helps you

ajsjoshua
Specialist
Specialist
Author

sorry instead of script i written set analysis

post some qvd.

avinashelite

Try like this , you could create your own QVD

Country:

LOAD * Inline

[

Country,Amount

India,1000

USA,500

UK,900

];

Result:

LOAD * , If(Amount>500,1,0) as Amount_Flag

resident

Country;

Drop table Country;

Store table Result into Country.qvd(QVD);

sunny_talwar