Hi, I need help with an excel formula. I have 2 lists, like:
<tbody>
A
X
B
Y
C
Z
</tbody>
And I need to find all possible TWO pairs, without repeating any cell, like:
AX + BY
AX + BZ
AX + CY
AX + CZ
AY + BX
AY + BZ
AY + CX
AY + CZ
...
I did get all possible pairs, like AX, AY, AZ, BX...