Hi,
You answered your own question.
You need a 'Creation' field within the table to show creation date.
For update records, you should use another table because there may be MANY updates to the original record.
e.g.
tblMain
pk autonumber
creationdate datetime
(other fields)
tblUpdates
pk autonumber
myupdate datetime
tblMain_fk long (link to tblMain PK)
So you create a relationship between tblMain and tblUpdates of 1:many.
If you want to know WHEN an update has occurred, you probably want to know WHAT has been changed. In this case you'll need more fields in tblUpdates to show the changes.
Regards,
Darrylle
"Never argue with an idiot, he'll bring you down to his level - then beat you with experience." darrylles@totalise.co.uk