kevinwilson
Technical User
Here's my problem:
I have two similar tables. I would like to populate the empty fields in tblInventory1 with the field info from tblInventory2 (where the SerialNumber's match). I do not want null values carried over from tblInventory2. I still require unmatched SerialNumbers. I've tried Right and Left Outer Joins without success.
tblInventory1
SerialNumber Bldg Room Description
123456 (empty) (empty) Laptop
654321 (empty) 108 Projector
987654 CC (empty) PC
435412 (empty) (empty) Router
unmatchSN DD 305 Router
tblInventory2
SerialNumber Bldg Room Description
123456 AA 101 Laptop
654321 BB (empty) Projector
987654 (empty) 203 PC
435412 AA 305 Router
unmatchSN DD 305 Router
The Appended or Updated tbl should look like this:
SerialNumber Bldg Room Description
123456 AA 101 Laptop
654321 BB 108 Projector
987654 CC 203 PC
435412 AA 305 Router
unmatchSN DD 305 Router
Thanks & Aloha, Kevin
I have two similar tables. I would like to populate the empty fields in tblInventory1 with the field info from tblInventory2 (where the SerialNumber's match). I do not want null values carried over from tblInventory2. I still require unmatched SerialNumbers. I've tried Right and Left Outer Joins without success.
tblInventory1
SerialNumber Bldg Room Description
123456 (empty) (empty) Laptop
654321 (empty) 108 Projector
987654 CC (empty) PC
435412 (empty) (empty) Router
unmatchSN DD 305 Router
tblInventory2
SerialNumber Bldg Room Description
123456 AA 101 Laptop
654321 BB (empty) Projector
987654 (empty) 203 PC
435412 AA 305 Router
unmatchSN DD 305 Router
The Appended or Updated tbl should look like this:
SerialNumber Bldg Room Description
123456 AA 101 Laptop
654321 BB 108 Projector
987654 CC 203 PC
435412 AA 305 Router
unmatchSN DD 305 Router
Thanks & Aloha, Kevin