Determine when Data in Table was last edited

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Is there a way to determine when the data in a table was last edited, via
VBA?

Thanks,

Sean
 
SM said:
Hi,

Is there a way to determine when the data in a table was last edited, via
VBA?

No, there isn't.

You could add a LastUpdated field to your table, put logic in your form's
BeforeUpdate event to set that field in the record being updated, then run a
query to get the maximum LastUpdated value from your table.

If you're not using a form for your updates, then there's no way.
 
Thanks for the answer!

I was going to use a variation of the approach you suggested, but I thought
there might be some hidden table property that might contain the information!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top