If you want to know the last time any record in the table was added,
modified, or deleted, there is no property that gives that information.
The best you can do in that regard is either maintain a "LastModified"
date/time field in the table (but that doesn't help with deletions), or
else only allow the table to be updated by procedures that record audit
information in another table.
If instead you want to know when the table's *design* was last modified,
you can get that from a property of the DAO TableDef object; e.g.,
Dim db As DAO.Database
Set db = CurrentDb
Debug.Print db.TableDefs("Table1").LastUpdated
Set db = Nothing
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)