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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Record Set Not Updatable - Runtime Error 1

Status
Not open for further replies.

bursoni

Technical User
Mar 22, 2002
3
US
I'm getting this error:

"This Record Set Not Updateable" when I select a button that updates a field in the datbase. The form's data source is a "Query", if that helps.

Anyone have any idea why this might be happening and how to fix?

Brian
 
This message could come about for two possible reasons: the query is a Totals Query, and is thus displaying summarized records. No updates are possible to fields in a totals query.

The second possibility is that the join the query is performing is keeping you from updating because what you are attempting to do would violate referential integrity - removing a linked value on the 'one' side when there are existing 'many' side matches, for example.

Sometimes the use of "Cascading Deletes" and "cascading Updates" can get around this, sometimes not.

Remember, you're unique - just like everyone else
You're invited to visit another free Access forum:
or my site,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top