I need to pair each item on one list to each item on another list

G

Guest

I need to pair each item on one list to each item on another list. For
example, if I have a list:

A
B
C

And another list:

D
E
F

What I need is one list as follows:

AD
AE
AF
BD
BE
BF
CD
CE
CF

Is there a simple way to do this, instead of a lot of copy and paste?

Thanks!

Peter R.
 
G

Guest

Assuming the 2 lists are housed within A1:B3, viz:

A D
B E
C F

Put in C1:
=OFFSET($A$1,INT((ROW(A1)-1)/3),)&OFFSET($B$1,MOD(ROW(A1)-1,3),)
Copy down to C9
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top