Below is the SQL statement without the column references... I do not get errors but I also do not get results.
As I'm sure you will see I am trying to update the HoursWorked field based on the employee's ID and the date of the entry
I'm not getting any errors so I 'think' I'm close...but I'm still the newbie...
Code:
StrSQL = "UPDATE tblDailyHoursWorked SET tblDailyHoursWorked.HoursWorked = [Forms]![frmTempTimeTest]![Text6] " & _
"WHERE (((tblDailyHoursWorked.DB_ID)=[Forms]![frmTempTimeTest]![LstTempTimeView]) AND ((tblDailyHoursWorked.Entered)=[Forms]![frmTempTimeTest]![LstTempTimeView]));"