xxxxx

  • Thread starter Thread starter Deleted member 85772
  • Start date Start date
D

Deleted member 85772

Guest
The message you have entered is too short. Please lengthen your message to at least 10 characters.
 
Last edited by a moderator:
I am assuming you have a date field for each item , if that is the case you could use the event after update of the price field and enter me.datefieldname =date() . If this is not clear please say so and i will give more details .
Regards
 
if you are creating a new record when you input the new price then you can do it in your tbl. just set default to Date(). or if you would like to do it in a form ie txtDateInput then you can also change the default to date() in the properties. you coould even use Now() which would give the exact date and time you enetered the new price.
 
Create a field named RecordEdited..give it a date format.

on the beforeupdate event of the form type



If Me.Dirty = True Then
Me!RecordEdited = Now()
End If
 

Users who are viewing this thread

Back
Top Bottom