J
Johnson
Will someone tell me how to use a macro in Access 2000 to set the date in a
form field when the macro is run. Thanks in advance.
form field when the macro is run. Thanks in advance.
Ken Snell said:Put the macro on the AfterUpdate event of the checkbox control.
The macro's actions would be this:
Action: SetValue
Item: [NameOfTextboxControlOnForm].Value
Expression: IIf([NameOfCheckboxControlOnForm].Value=True,Now(),Null)
--
Ken Snell
<MS ACCESS MVP>
Johnson said:I would like to have a checkbox on a form that when checked the current
date and time is inserted into a field on the form.
Thanks