I am trying to create an Update Query but am having trouble. I have a "target" table, tblWinSchoolExtract, that has data. The key for the target table is Student Number. Then I have a query, qryContact, where I have contact information.
I want to put the Contact Information [qryContact].[Last_Name], [qryContact].[First_Name], and [qryContact].[Phone] into [tblWinSchoolExtract].[Last_Name],[tblWinSchoolExtract].[First_Name],[tblWinSchoolExtract].[HomePhone].
When I create the Update Query and put [tblWinSchoolExtract].[Last_Name] in the Field Name and [qryContact].[Last_Name] in the Update TO: a Enter Parameter Value box pops up. There is no parameter on this query.
When I flip-flop the fields and put [qryContact].[Last_Name] in the Field and [tblWinSchoolExtract].[Last_Name] in the Update To: I get an error, "Operation must use an updateable query"
I want to update the table, not the query so I think the first way is the way to go but why won't the table update???
Thanks!
Hillary
I want to put the Contact Information [qryContact].[Last_Name], [qryContact].[First_Name], and [qryContact].[Phone] into [tblWinSchoolExtract].[Last_Name],[tblWinSchoolExtract].[First_Name],[tblWinSchoolExtract].[HomePhone].
When I create the Update Query and put [tblWinSchoolExtract].[Last_Name] in the Field Name and [qryContact].[Last_Name] in the Update TO: a Enter Parameter Value box pops up. There is no parameter on this query.
When I flip-flop the fields and put [qryContact].[Last_Name] in the Field and [tblWinSchoolExtract].[Last_Name] in the Update To: I get an error, "Operation must use an updateable query"
I want to update the table, not the query so I think the first way is the way to go but why won't the table update???
Thanks!
Hillary