|
-
Feb 3rd, 2004, 12:01 PM
#1
Thread Starter
New Member
MS Access table modified date [RESOLVED]
I am trying to get the table modified (or creation) date of a table in Access. I am pulling in sales data and storing current sales in a table, which is overwritten with new sales the next day. On the form I display the sales numbers, I need to show when the sales were last updated. I could get this information dynamically from the sales table's creation/modified date property; however, I cannot find a way that works for me.
Ideally, I want the code that gets this information to run during the Form_Load() event.
Any thoughts?
Last edited by jtnelso; Feb 4th, 2004 at 10:23 AM.
-
Feb 4th, 2004, 06:41 AM
#2
Member
CurrentDb.TableDefs("MyTableName").DateCreated
CurrentDb.TableDefs("MyTableName").LastUpdated
-
Feb 4th, 2004, 10:23 AM
#3
Thread Starter
New Member
That worked perfectly...thanks for your help, Issvar.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|