Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
tinkerz1
Creator II
Creator II

creating a list of records from a table

Hi can I take a table and turn it into a list??

table to a list.PNG

Message was edited by: Neil Woodham

13 Replies
tinkerz1
Creator II
Creator II
Author

This is great thanks,

Can you crosstable load and perform an inline function from table already loaded?

Thanks

swuehl
MVP
MVP

INLINE LOAD is just for demonstration, use a resident table load with your real data:

CROSSTABLE (Field, Value)

LOAD

  recno() as ID,

  * ,

  ' ' as ' ';

LOAD RecordNo, Name, Address

RESIDENT YourResidentTable;


tinkerz1
Creator II
Creator II
Author

Sorry about the repeating questions, what does the =1 in the expression do?

swuehl
MVP
MVP

It's kind of a dummy value, a straight table needs an expression, and a constant value <> 0 just shows all lines (selections will still filter dimensions). Remember, the expression column will be hidden from the user.