Having a Gump moment again! I need to add the line of code that says SickDay to the first line of sql so that it ONLY adds the current record.
PHP:
'UPDATE PAYROLL DATA
DoCmd.Hourglass True
DoCmd.SetWarnings False
DoCmd.RunSQL "UPDATE tblHour SET tblHour.WorkDate = Me.AbsenceDte " & _
"WHERE (((tblHour.EmployeeID)='" & Me.EmployeeID.Value & "'));"
DoCmd.RunSQL "UPDATE tblHour SET tblHour.SickDay = True "
DoCmd.SetWarnings True
DoCmd.Hourglass False