You can't "save on a report" - a report is just a tool to display data in a
Table.
You can set the value of a field in a table to Now() in the Click event of a
button. Assuming that the button is on a form bound to the table, and that the
proper record (that employee's record...???) is selected, use code like
Private Sub cmdTimestamp_Click()
Me!timestampcontrol = Now
End Sub
using the actual name of the form control bound to the timestamp field in your
table.
(add this as code behind the command button to put the timestamp value in
the control on the form)
Regards
Jeff Boyce
Microsoft Office/Access MVP
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.