Results 1 to 4 of 4
  1. #1
    ldodge is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2011
    Location
    Wisconsin
    Posts
    43

    Pardon me, do you have the time?

    Hi all --
    What would be the best way to time stamp a form when someone enters data into a particular field?
    Thanks in advance
    Lawrence

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    Not sure what you mean by 'time stamp a form'.

    Can use DefaultValue property to automatically save current date/time into a new record.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    While in Design View of the table Object, go to the field's properties. In the Default Value property place

    Now()

  4. #4
    NTC is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    Nov 2009
    Posts
    2,392
    for original/initial entry - that means creating the new record: you can simply have a field (time/date type) and set its default to be: =Now()

    if you are talking about an edit - then this gets more involved; in the form you can use the OnDirty or the AfterUpdate event which would span all fields of the record....or if you want to tie it to a specific field you can do it in the AfterUpdate event of that field..... but that timestamp field is going to be overwritten each time....so you'll only know the last edit and not any prior edits.... attempting to track all edits requires writing to a separate log table & this becomes quite involved and generates potentially lots of data records so you want to really be sure it is worth the effort when you consider this.....

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Networking and Access (pardon my newb-ness)
    By kpo in forum Database Design
    Replies: 3
    Last Post: 03-05-2013, 11:12 AM
  2. Replies: 42
    Last Post: 03-01-2013, 06:58 AM
  3. Replies: 1
    Last Post: 08-14-2012, 03:22 AM
  4. Replies: 1
    Last Post: 02-28-2012, 09:16 PM
  5. Replies: 7
    Last Post: 08-04-2011, 07:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums