Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Using conditions in Qlikview loading

Hi,

I am Ravikumar ,

How to use the conditions like(where) In qlikview loading ...

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hey there,

Here's an example from the F1-Help in QlikView:

Load * from Consumption.csv where Litres>0;

View solution in original post

4 Replies
Anonymous
Not applicable
Author

Hey there,

Here's an example from the F1-Help in QlikView:

Load * from Consumption.csv where Litres>0;

tresesco
MVP
MVP

Hi Ravi,

you can use WHERE as:

LOAD .......... FROM ..........WHERE <your condition>;


Regards, tresesco

Not applicable
Author

HI,

T1:

LOAD C1,

C2

FROM

D:\Upendra\Book1.xlsx (ooxml, embedded labels, table is Sheet1)

where C1>'15';



Table contains

C1 C2

11 IND

12 USA

15 RSA

25 OMN

299 BRH

100 QTR

Thanks & Regards

Not applicable
Author

Hi Ravi,

You can apply these condition when you are trying to extract data from data source or in the script of QVD Generator or QVD Extractor,

Please have a look at this example :





Specialisation:
Load DISTINCT *;
SQL SELECT *
FROM AHISAPOLLO.dbo.Specialisation
where Year(StartDatetime) = Year(GETDATE())-1 ;
store Specialisation into [..\DataSources\QVDOLD\Specialisation_Tab.QVD](qvd);
DROP TABLE Specialisation;

This is the simple example for where condition .

I think that will serve your purpose.

Best of luck..........

Regards,

Dushyant

mail me at dushyant.ntpc@gmail.com