I'm stuck and I usually can find an answer, but I don't work with reports often. I need to ask the Pros here whether it's possible to group Area by the following:
Dim str as string
str = Left(Area Field, 2)
Select Case str
Case Is = "11", "12", "13"
Report Group Area = "Division 1"
Case is = "14", "15,", 16"
Report Group Area = "Division 2"
Case is = 'etc', 'etc'
Report Group Area = "Division X"
end select
Dim str as string
str = Left(Area Field, 2)
Select Case str
Case Is = "11", "12", "13"
Report Group Area = "Division 1"
Case is = "14", "15,", 16"
Report Group Area = "Division 2"
Case is = 'etc', 'etc'
Report Group Area = "Division X"
end select