Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can edit query results

Status
Not open for further replies.

GlenLynam

MIS
Jul 26, 2002
121
0
0
Good Morning,

I am trying to edit the results for the following query but all it does is make a noise and wont let me edit the results, no errors or anything.

The query is as follows, please can someone tell me how to edit the results??

Thanks

SELECT Courses.CourseName, Courses.Description, Training.When, Training.NameOfTrainer, Training.Location, Training.Completed
FROM Courses INNER JOIN (Personal INNER JOIN Training ON Personal.PersonID = Training.PersonID) ON Courses.CourseID = Training.CourseID
WHERE (((Training.PersonID)=[forms]![Personal]![txtpersonid]));
 
You do not have an updateable recordset, by the look of it. Why do you need a join to personal when you are not referencing any fields in that table? If you want a query of this type to be updateable, you generally need at least one unique index.
You may wish to look at:
Harnessing the Power of Updatable Queries
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top