D
Doug F.
How can I find the date modified of an Access table.
Thanks,
Doug
Thanks,
Doug
How can I find the date modified of an Access table.
Thanks,
Doug
John W. Vinson said:You can't, since Access does not store that information.
You can of course make arrangements to store it yourself, in that table or in
a separate log table.
John W. Vinson said:You can't, since Access does not store that information.
You can of course make arrangements to store it yourself, in that table or in
a separate log table.
CurrentDb.TableDefs("tableName").Properties("LastUpdated").Value
John W. Vinson said:I should just try it, Michel, but does this record the last date that the
*data in the table* was updated, or the last date that the *structure* of
the
table was updated? And how does this work for a linked table?
AFAIK, it's the last date that the structure of the table was
updated.
vanderghast said:CurrentDb.TableDefs("tableName").Properties("LastUpdated").Value
You may get an error if the property does not exist.
Vanderghast, Access MVP