So usually I know what I'm trying to do and can google it and figure it out. But this, I don't even know what it's called that I'm trying to do. I have two sheets in excel (or tables in Access, whichever is easiest for you). Table A has 315 numbers and Table 2 has 146 people. I need to merge the two tables so that I have two columns. One column with each account and the other with each person. So I'll basically end up with about 46,000 rows. So:
Table 1:
number
1
2
3
4
Table 2:
person
A
B
C
D
Intended result:
Table 3:
person number
A | 1
A | 2
A | 3
A | 4
B | 1
B | 2
B | 3
B | 4
C | 1
C | 2
C | 3
C | 4
And so on. If I was doing PHP with mysqli, I'd just output a for loop but I only have access/excel available to me here and I don't know enough VBA to make my own macro (if I knew what I was trying to do, here is where I'd google it). So, I appreciate any willingness to help even though I'm not even providing code that I've tried simply because I don't know where to start.