starclassic
Technical User
DoCmd.RunSQL "INSERT INTO tblDraftEntry (FormIDEntry,COCodeEntry,BeginEntry,EndingEntry,Date) Values" _
& "('" & Me.cboFormNumber & "', '" & Me.txtCode & "', " _
& "'" & Beginning & "', '" & Ending & "', '" & Format(Now(), "mm/dd/yyyy") & "')"
Not sure where the syntax error as it worked fine on my other programs, seems to be pointing on the Format(now(), "mm/dd/yyyy").
Thanks for the help.
& "('" & Me.cboFormNumber & "', '" & Me.txtCode & "', " _
& "'" & Beginning & "', '" & Ending & "', '" & Format(Now(), "mm/dd/yyyy") & "')"
Not sure where the syntax error as it worked fine on my other programs, seems to be pointing on the Format(now(), "mm/dd/yyyy").
Thanks for the help.