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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Vittore8
Creator
Creator

Qlik Sense Select all

Hi, please tell me how to replace it, Select * from [table] where [column] = ".....";  to this expression, ={$<Age={20}>}

Labels (1)
1 Reply
Durgadevikumar
Partner - Contributor III
Partner - Contributor III

Hi Vittore,

Try this below,

TableA:

load

field1,

field2,     // Age should be one of the field among all the fileds

Field3,

.,.,.,., Fieldn

FROM
[C:\Users\Desktop\top 10 sales.xlsx]
(ooxml, embedded labels, table is Sheet2)

where Age = 20;

OR

while taking the resident load

load * resident TableA

where age = 20;

Hope it is useful...

Regards,

DurgadeviKumar