Simple question from a beginer

  • Thread starter Thread starter Robert Gillard
  • Start date Start date
R

Robert Gillard

I have a form called Access which has a field called DPA Sent. After a
certain criteria has been completed I want the field to be filled with the
date and time.
The initial part of the program runs ok, I now need the date to fill in and
I am using the following

DoCmd.SetValue, Forms!Access![DPA sent]=Now()

but this gives an answer of "Method or data member not found"

Can you please advise me how I should phrase this command

with thanks

Bob
 
Just use the straightforward step (DoCmd.SetValue isn't needed for this):

Forms!Access![DPA sent]=Now()
 
Back
Top