Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
david_ze
Partner - Contributor III
Partner - Contributor III

Creat one list out of two

Hi all,

I have two lists which I'd like to combine them.

list of customers consist's of cust numbers:
1
2
3
4
5

and a list of items consist's of:
x
y
z


I'd like to attache to each item (x, y, z) all cust numbers and to create a new list as follows:
x1
x2
x3
x4
x5
y1
y2
y3
y4
y5
z1
z2
z3
z4
z5

I'll appreciate if you can advise me on the way to do this.

Thanks in advanced.
Best regards,
David

3 Replies
lironbaram
Partner - Master III
Partner - Master III

try this script

DataTemp:

LOAD * INLINE [
F1
X
Y
Z
]
;
join
LOAD * INLINE [
F2
1
2
3
4
5
]
;


Data:
load F1&F2 as FieldList
Resident DataTemp;

drop table DataTemp;

Anonymous
Not applicable

If the pupose is to get a list box, there is no need to scipt changes.  Just use calculated list box with expression

F1 & F2

david_ze
Partner - Contributor III
Partner - Contributor III
Author

Thanks Liron.