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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
jdam0074
Contributor
Contributor

Concatenate 2 dimensions into one column

Hey,

I'm trying to get two different level metrics into one column and to appear under one. So it would be normally:

level 3 --  level 5

But now I want,

Level 3

Level 5

If that makes sense?

1 Solution

Accepted Solutions
stevejoyce
Specialist II
Specialist II

maybe

newTable:

load *

,[level 3] as CombinedField

resident originalTable;

concatenate(newTable)

load *

,[level 5] as CombinedField

resident originalTable;

 

drop originalTable;

View solution in original post

1 Reply
stevejoyce
Specialist II
Specialist II

maybe

newTable:

load *

,[level 3] as CombinedField

resident originalTable;

concatenate(newTable)

load *

,[level 5] as CombinedField

resident originalTable;

 

drop originalTable;