I have 2 tables: Business and System.
System contains System ID and System_Name
Business contains Business ID and System_No
They have 1 to many relationship joined by System ID and System _No
Now I want to create a Report; this report should display all System_Names from the Business table (remember, only IDs on this table)
I can use the following 2 queries to display the System_Names, but don’t know how to create a textbox control to display the Updated, then Selected Result.
(1)(UPDATE System INNER JOIN Business ON System_ID = System_No SET Business.System_Name = System.System_Name
WHERE (((Business.System_No)=[System]![System_ID])); ( I have to add a third column to the Business table)
(2)Select System_Name from Business.
This is an urgent task. Your help will be greatly appreciated. Chris
System contains System ID and System_Name
Business contains Business ID and System_No
They have 1 to many relationship joined by System ID and System _No
Now I want to create a Report; this report should display all System_Names from the Business table (remember, only IDs on this table)
I can use the following 2 queries to display the System_Names, but don’t know how to create a textbox control to display the Updated, then Selected Result.
(1)(UPDATE System INNER JOIN Business ON System_ID = System_No SET Business.System_Name = System.System_Name
WHERE (((Business.System_No)=[System]![System_ID])); ( I have to add a third column to the Business table)
(2)Select System_Name from Business.
This is an urgent task. Your help will be greatly appreciated. Chris