I have a report that has "Text137" that has my ReportNum (="ITS" & "-" & "ECS" & "-" & [AgencyID] & "-" & "000"). I would like to have the ReportNum increase by 1. [AgencyID] is a text box. I also have a Button that stores parts of the report into a table called "Report". Below is the code I'm currently using to load the Report fields into the Table "Report". SO the fix I need would increase the "ReportNum/Text137" by 1 and also change the code below to allow it to be imported into the Table "Report". Thank you for any help.
Private Sub Command192_Click()
CurrentDb.Execute "INSERT INTO Report ( ReportNum, AgencyID, AgencyName, ServiceGroup, StartDate, EndDate, ServiceName ,Total) " & _
" VALUES ('" & [Text137] & "'," & [AgencyID] & ",'" & [AgencyName] & "','" & _
[ServiceGroup] & "',#" & [Text106] & "#,#" & [Text0] & "#,' " & [Label197].[Caption] & " ', ' " & [Text188] & " ')"
End Sub