I have a lookup table which is used by 3 combo boxes on the same form. I want to be able to input a value that is not in any of the combo boxes and have it added to the table. How do I do this? I have created three update queries and here is the SQL for the first. The other two have the appropriate changes to the code, but are otherwise Identical.
The table's name is tblLookup-Medium, the boxes are Medium1 though Medium3
Any help is welcome. Thanks
____________________________________________________________________________
There are only 10 types of people in the world. Those that know binary and those that don't
Brent
The table's name is tblLookup-Medium, the boxes are Medium1 though Medium3
Code:
UPDATE [tblLookup-Medium] RIGHT JOIN tblNeeds ON [tblLookup-Medium].Medium = tblNeeds.Medium1 SET [tblLookup-Medium].Medium = tblneeds.medium1
WHERE ((([tblLookup-Medium].Medium) Is Not Null));
Any help is welcome. Thanks
____________________________________________________________________________
There are only 10 types of people in the world. Those that know binary and those that don't
Brent