Update a field with a button

R

RobertM

Hello:

I just want to put a button on my form that when clicked it will put the
current date in a field on my form. I believe that there is an easy way to do
this with expression builder or a macro, but it's escaping me right now. Any
help not involving visual basic is appreciated.
 
R

Rick B

Not sure how to do it without vb (don't know why you would not want to use a
powerful tool like coding).

Just add the following code to your CLICK event.


[Somefieldname] = Date()
 
Top