Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Please Is there in Qlikview a type which can contain several elements? As a list or a collection of others programming languages
Thanks
you can use inline
Please Sunil, can you explain how it works???
For example:
LOAD * INLINE [
Name, Sales
John, 3000
Mary, 1200
Jones, 2300
];
Agree wirh Erico
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.