V
VilMarci
Hi,
I started at the qureies topic but as I was afraid of, only VBA left.
Can anyone give me an idea how to start?
I need to join anyhow these two table mentioned below.
The two source table look like:
Table1
key,orderNumber,PossibleSN
1,11,123
2,11,
3,12,345
Table2
OrderNumber,SentSerial
11,123
11,321
12,345
So what I need is a result like:
key,orderNumber,PossibleSN,SentSerial
1,11,123,123
2,11,,321
3,12,345
I started at the qureies topic but as I was afraid of, only VBA left.
Can anyone give me an idea how to start?
I need to join anyhow these two table mentioned below.
The two source table look like:
Table1
key,orderNumber,PossibleSN
1,11,123
2,11,
3,12,345
Table2
OrderNumber,SentSerial
11,123
11,321
12,345
So what I need is a result like:
key,orderNumber,PossibleSN,SentSerial
1,11,123,123
2,11,,321
3,12,345