Question : Update field in table with unbound field on form.

Hello, I need to update a unbound field data to a table field and I'm getting "Too few parameters. Expected 1" error message. I can't find what wrong here so I need some help.

***See Example Database***

Thanks in advance!
Attachments:
 
Example database to update unbound field to table field.
 

Answer : Update field in table with unbound field on form.

"Update tblmkOpenClose set tblmkOpenClose.ChkRequestDate= '" & Me.txtChkRequestDate & "' Where CLAIMNBR='" & Me.txtCLAIMNBR.Value & "'"

You are forgetting to put ' ' around text values

I question why you aren't making dates of db type DateTime for ChkRequestDate, but that is your choice.  The above seems to work.
Random Solutions  
 
programming4us programming4us