I'm not sure if I got the term right, but I have lists of unique values and I want to replicate each values from a lists to correspond to every value from the rest of the lists.
From the following column consisting of unique values.....
| column1 | column2 | column3 | column4 |
|---|---|---|---|
| a1 | b1 | c1 | d1 |
| a2 | b2 | c2 | d2 |
| a3 |
I want to create a table like this.
| column1 | column2 | column3 | column4 |
|---|---|---|---|
| a1 | b1 | c1 | d1 |
| a1 | b1 | c1 | d2 |
| a1 | b1 | c2 | d1 |
| a1 | b1 | c2 | d2 |
| a1 | b2 | c1 | d1 |
| a1 | b2 | c1 | d2 |
| a1 | b2 | c2 | d1 |
| a1 | b2 | c2 | d2 |
| a2 | b1 | c1 | d1 |
| a2 | b1 | c1 | d2 |
| a2 | b1 | c2 | d1 |
| a2 | b1 | c2 | d2 |
| a2 | b2 | c1 | d1 |
| a2 | b2 | c1 | d2 |
| a2 | b2 | c2 | d1 |
| a2 | b2 | c2 | d2 |
| a3 | b1 | c1 | d1 |
| a3 | b1 | c1 | d2 |
| a3 | b1 | c2 | d1 |
| a3 | b1 | c2 | d2 |
| a3 | b2 | c1 | d1 |
| a3 | b2 | c1 | d2 |
| a3 | b2 | c2 | d1 |
| a3 | b2 | c2 | d2 |
Is there a way to do this in excel, with the use of base functions, without manually replicating each value using copy/paste?

