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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Collections in Qlikview.

Hi,

Please Is there in Qlikview a type which can contain several elements? As a list or a collection of others programming languages

Thanks

5 Replies
suniljain
Master
Master

you can use inline

Not applicable
Author

Please Sunil, can you explain how it works???

Not applicable
Author

For example:

LOAD * INLINE [

Name, Sales

John, 3000

Mary, 1200

Jones, 2300

];



suniljain
Master
Master

Agree wirh Erico

johnw
Champion III
Champion III

I'd expect you to implement a list the way you would in a relational database, on a different table linked by key:

Main Table:
Blah, Blah, Blah, ListKey, Blah, Blah, Blah
A , B , C , 123 , D , E , F

List Table:
ListKey, ListValue
123, First Value
123, Second Value
123, Third Value

Above is an unordered list, which I suppose is just a collection. Add a sequence field for an ordered list.