Hi all!
Once again I have found myself in position of asking for your assistance!
Your hints,Contribut ions or Creations has been very usefully for access users around the world!
I have a query (ModQuery)selec ted from two tables as
I would like the following to happen from this query:
1. Create a table using VBA (tblModQuery)
2. Insert a new Column in this new table
2. This table should be updatable as we always expect new data from tables to update a query
(ModQuery) and hence a new table (tblModQuery)
Please help!
Once again I have found myself in position of asking for your assistance!
Your hints,Contribut ions or Creations has been very usefully for access users around the world!
I have a query (ModQuery)selec ted from two tables as
Code:
SELECT Modules.ModuleID, Modules.ModName, Modules.NtaID, tbStudent.[First name], tbStudent.[Last Name] FROM (Department INNER JOIN tbStudent ON Department.[DeptID] = tbStudent.[DepartmentID]) INNER JOIN Modules ON Department.[DeptID] = Modules.[DeptID];
1. Create a table using VBA (tblModQuery)
2. Insert a new Column in this new table
2. This table should be updatable as we always expect new data from tables to update a query
(ModQuery) and hence a new table (tblModQuery)
Please help!
Comment