Hi, I'm fairly new to Access. I'm trying to create a query that "multiplies" two fields from unrelated tables, to get all possible combinations. Essentially creating a 2-D array and then exploding it.
For example, tab1.fieldX has the entries
1, 2, 3
tab2.fieldY has the entries
a, b, c
I want a query that will produce two columns, X and Y
with entries
1,a
1,b
1,c
2,a
2,b
etc.
Is this possible?
Thank you!!