Can anyone tell me why this works
And this does not.
Thanks
Code:
strSQL = "INSERT INTO tblLaborTrades ( ltLaborTradeDesc, ltLogDate, ltUserID) "
strSQL = strSQL & "VALUES('" & NewData & "',' & now() & ',' & getUserID() & ');"
Code:
strSQL = "INSERT INTO tblLookupPhase ( phPhase,phUserID) "
strSQL = strSQL & "VALUES('" & NewData & "',' & getuserID() & ');"
Thanks