Afternoon all,
Wondering if one of you good people could give us a hand with my SQL string.
The debugger says there's a problem with the sql statement and that's all it says - pretty helpful
I've looked over my code, but i've prob over-looked the error - if you could see what's a miss it would be grand.
Regards,
Mike
Wondering if one of you good people could give us a hand with my SQL string.
The debugger says there's a problem with the sql statement and that's all it says - pretty helpful
I've looked over my code, but i've prob over-looked the error - if you could see what's a miss it would be grand.
Code:
DoCmd.RunSQL _
"INSERT INTO Job ( " _
& "[Recieved Date], [SE Reference], [FM Reference], [Assigned Date], [Assigned Hours], [Assigned Techie], [Customer]," _
& "[Due Date], [L1 Check Ready], [L1 Check Date], [L2 Check Ready], [L2 Check Date], [Approved], [Floor Area] )" _
& "VALUES (" & recDate & ", '" & seRef & "', '" & fmRef & "', " & assDate & ", " & assHours & ", '" & assTech & "', '" _
& cust & "', " & dueDate & ", No, 0, No, 0, 0, 0)"
Regards,
Mike