Skip to main content
Announcements
Do More with Qlik - Qlik Cloud Analytics Recap and Getting Started, June 19: REGISTER
cancel
Showing results for 
Search instead for 
Did you mean: 
fgolmahi
Contributor III
Contributor III

How to use Function " Where " ?????

Hi Dear friends

Please Help me

How to use Function "Where"in edit script If Read data from database ( SQL)   ?????

see attachment please

1 Solution

Accepted Solutions
Anil_Babu_Samineni

You can do with it


Sample:

Load * from Qvd Where Month = 'April';

Store Sample into Path\Sample_April.qvd (qvd);

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

22 Replies
Anil_Babu_Samineni

You can use before semi colon only

Load * from Qvd Where Condition;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
micheledenardi
Specialist II
Specialist II

Put the Where condition after (qvd) and before ;


Load

    a,

    b,

    c

from MyQvd.qvd (qvd) where CONDITIONS ;

Where Clause ‒ QlikView

Video Link : 4112

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
devarasu07
Master II
Master II

Hi,

try like below

Fact:

LOAD

Table_Columns;

SQL SELECT *

FROM [SQL table name]

Where Condition = value;

STORE Fact into $(vQVDPath)\Fact.QVD;

prma7799
Master III
Master III

Remove colon..

Untitled.png

prma7799
Master III
Master III

colon means end of the statement

Use colon (;)  after your last code of the script ...

fgolmahi
Contributor III
Contributor III
Author

1111.png

fgolmahi
Contributor III
Contributor III
Author

thanks Dear

Is that not work 1111.png

devarasu07
Master II
Master II

Hi,

Refer below screen,

Untitled.png

fgolmahi
Contributor III
Contributor III
Author

Thanks Dear

Don't work it

please help me