Given the following simple organization of data in a table:
AGENCY PERIOD ENDING NUMBER SERVED NUMBER ACC
Agency X 31, Jan 02 23
Agency X 28, Feb 02 12
Agency y 31, Jan 02 42
.
.
.
.
.
Each table has about 50 numeric fields..
Each table is reported by month.
In order to generate a Year-to-Date report, I need to accumulate each field and sort by agency so that I can get a total for each field. Normally, I would just assign a group of global variables to collect data from each record, but I do not know how to do that in VBA...
I can be reached at bj.wink@mail.state.ky.us if my thoughts make no sense
AGENCY PERIOD ENDING NUMBER SERVED NUMBER ACC
Agency X 31, Jan 02 23
Agency X 28, Feb 02 12
Agency y 31, Jan 02 42
.
.
.
.
.
Each table has about 50 numeric fields..
Each table is reported by month.
In order to generate a Year-to-Date report, I need to accumulate each field and sort by agency so that I can get a total for each field. Normally, I would just assign a group of global variables to collect data from each record, but I do not know how to do that in VBA...
I can be reached at bj.wink@mail.state.ky.us if my thoughts make no sense