Okay, I am just providing an update to my problem. I went back and added each procedure from my code to find out which one was giving me a problem and here is what I found.
SQL = "Select Sum(OverallHistoryEST.PaidHours) As PdHours, " & _
"Sum(OverallHistoryEST.SystemHours) As SysTime, " & _
"Sum(OverallHistoryEST.NowDue + OverallHistoryEST.FullBalance) As MinDue, " & _
"Sum(OverallHistoryEST.FullBalance + OverallHistoryEST.NowDue + OverallHistoryEST.PastDue + OverallHistoryEST.MonthDue) As PrevAg, " & _
"Sum(OverallHistoryEST.SpeedPay) As SpdPay, " & _
"Sum(OverallHistoryEST.Connects) As AgConn, " & _
"Sum(OverallHistoryEST.PTPKeptAcc) As KeptProm, " & _
"Sum(OverallHistoryEST.PTPBrokeAcc) As BrokProm, " & _
"Avg(OverallHistoryEST.[Update Time]) As AgUp " & _
"From OverallHistoryEST " & _
"Where OverallHistoryEST.EmployeeID = '" & UCase(frmData.txtEmpID.Text) & "' " & _
"And OverallHistoryEST.Week >= '" & dblWeekB & "' " & _
"And OverallHistoryEST.Week <= '" & dblWeekE & "'"
This SQL statement is what is causing my saving problem. It is actually each of the Sum statements after the Select statement. I can't figure out what is wrong.