Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
sushil353
Master II
Master II

where condition

hi experts

i want to aply where condition while loading data from a xl file



TEAM:

LOAD

TEAM_ID,

[TEAM NAME],

[TEAM COST]

FROM

[..\TESTDATAFILE.xls]

(

biff, embedded labels, table is Sheet1$);

i tried to apply where team_id>20 after from [..\TESTDATAFILE.xls]. but it is giving me error.



please help me.

thanks.

2 Replies
Not applicable

Hi Sushil353

Try like this..

LOAD



TEAM_ID,

[TEAM NAME],

[TEAM COST]



FROM

(biff, embedded labels, table is Sheet1$)

Where Team_Id>20;



Otherwise, after written while reloading you can put filter.





[..\TESTDATAFILE.xls]

Not applicable

dont read my first post. it was stupid due to qlikview editor.

try this..





LOAD

EnqID

,

Insys_Status

FROM

[Sample Data.xls]

(

biff, embedded labels, table is [CCP CAll Status$]

)

where

EnqID >20;