Tara said:
I have someone who says they entered data into a database, but the data
isn't
there. Others have entered data into the same database and that data is
there. All users have used the same front-end. Save is automatic when
the
form is closed. There are no signs of corruption.
Is this possible?
No -- or rather, in the absence of corruption or user action, data doesn't
just disappear. There are a few possibilities to consider:
1. The user is mistaken in thinking the data was entered.
2. The data was manually deleted, either by this user or by someone else.
3. The data was deleted programmatically or by a delete query that was too
broad in scope.
4. The data was deleted by the action of cascading deletes -- that is, a
"parent" record in another table was deleted, and relationships have been
defined in such a way that deleting the parent record causes all related
records to be deleted.
5. The data is still there, but doesn't appear on the form, report, or query
you're looking at because either (a) there are filtering criteria in effect
that exclude it, or (b) the form/report's recordsource is a query (or you're
looking directly at a query) that joins multiple tables in a way that
prevents the records from the subject table from appearing when they don't
have matching records in some other table -- and the records you're looking
for don't.
The first thing I would investigate is #5, above. Make sure you look
directly in the table where these records are supposed to have been stored,
and see if they are there.