?
.
Works on dev computer.
Table hst contains some fields common to table tab1.
Whenever a value changes in tab1, code adds rec to hst,
values coming from tab1's updated rec:
sel = "select <common fields> from tab1 WHERE ID ='" & sID & "'"
CurrentDb.Execute "INSERT INTO hst " & sel
Works on dev computer.
Not on user's.
All code identical (copied).
Debugging proves a record selected.
And debugger happily runs the Execute line;
without appending anything.
Hst has no key field.
I find no differences in designs of respective tables.
Access 97.
Table hst contains some fields common to table tab1.
Whenever a value changes in tab1, code adds rec to hst,
values coming from tab1's updated rec:
sel = "select <common fields> from tab1 WHERE ID ='" & sID & "'"
CurrentDb.Execute "INSERT INTO hst " & sel
Works on dev computer.
Not on user's.
All code identical (copied).
Debugging proves a record selected.
And debugger happily runs the Execute line;
without appending anything.
Hst has no key field.
I find no differences in designs of respective tables.
Access 97.