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: 
enfodavid
Partner - Contributor III
Partner - Contributor III

Qlik Sense: Fill out table with key, or rather reducing rows

How do I fill out a table that has a key and all fields (Including some empty ones) but on separate rows. Desired table is just a row per key.

CHA.png

This is probably easy but I've drawn a total blank

1 Solution

Accepted Solutions
enfodavid
Partner - Contributor III
Partner - Contributor III
Author

Group By is what I'm looking for. I'm dumb

LOAD Only(%Key) as Key,

           Only(Field1) as Field1,

           Only(Field2) as Field1,

           Only(Field3) as Field1

FROM $Source

Group By %Key;

View solution in original post

1 Reply
enfodavid
Partner - Contributor III
Partner - Contributor III
Author

Group By is what I'm looking for. I'm dumb

LOAD Only(%Key) as Key,

           Only(Field1) as Field1,

           Only(Field2) as Field1,

           Only(Field3) as Field1

FROM $Source

Group By %Key;