G
Guest
I have a field with the same name in two tables. My routine in DAO errors when trying to update one of these fields. How do you reference a field that exists in >1 tables? I have both an Heirs and Estate table with a field called "Counter". Here is a snippet:
With rs
If rs.Updatable Then MsgBox "ok" 'I get the ok
.Edit
![Heirs].[Counter] = assigned_existing_estate_value '<-----ERRORS HERE*********
.Update
End With
rs.Close
With rs
If rs.Updatable Then MsgBox "ok" 'I get the ok
.Edit
![Heirs].[Counter] = assigned_existing_estate_value '<-----ERRORS HERE*********
.Update
End With
rs.Close