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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

load a single column from table

Hi friends

I want to load single column from table without excluding any column....

tab.PNG

here I want to load Id column and value of id should be start with 'GN' only can anyone please tell me how is it

1 Solution

Accepted Solutions
MarcoWedel

LOAD ID FROM yourtable

Where ID like 'GN*';

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Load * resident myTable where Left(ID,2)='GN';

let me know

MarcoWedel

LOAD ID FROM yourtable

Where ID like 'GN*';

Not applicable
Author

LOAD ID FROM table

Where ID like 'GN*'