Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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