Sorry, I guess I'm too familiar with my problem
I have a TABLE which contains many fields. The table is called MEMBERS. The
table contains information regarding the members. One of the fields is
M_CALL. This field contains the radio callsign of the various members. The
format of the callsign will indicate if a member is in training. For example
AFT4AA would be a trainee, as opposed to AFA4ZZ. The Members table also has
the members name, address, city, state zip, and other data. The State field
contains the US Post Office State abbreviation, i.e., STATE would contain AR
representing Arkansas, OK for Oklahoma, etc. The MEMBERS table has a field
called Counter in which is the number 1 for all records. The purpose is for
counting.
There is another table called PARTICIPATION TIME. It has a number of fields.
One field is the M_CALL as described above. It has other fields for
participation hours (numbers) in various categories of participation. It
also has a field called Counter in which is the number 1 in each record for
counting purposes.
A TABLE is necessary to hold the following numbers to develop a statistical
report
The Table is called Statistics and has fields for the followign data.
Number of members in the region (all STATES)
Number of Members in each STATE
% of members in each state relative to the entire region
Number of Members in training in the entire region (all STATES) Developed by
Selecting M_CALL Like "??T???" in the MEMBERS table
% of members in training relative to the total membership
Number of Members in training in each State
% of members in that state relative to entire region
% of members relative to the total in that state
Number of members whose participation is less than 12 hours (total of all
categories)but 1 hour or greater in the entire region
% of members whose particpation is less than 12 hours but 1 or greater in
the Region
Number of members in each state whose participation is less than 12
hours(total of all categories) but 1 hour or greater.
% of members in each state whose participation is less than 12 hours (total
of all categories) but 1 hour or greater. (Percentage of that state's members)
Number of members in each state who have zero participation (total of all
hours)
% of members with zero participation in each state (percentage of that
states's members)
The total mebership in each region can be as low as 50 or as many as several
thousand.
The participation hours are divided into 9 different categories, but for the
statistics purposes, all categories are added together to determine if they
have some participation but less than 12, or of they have no peraticipation.
I hope this clarifies the problem.
Thanks again for your help.
Abe Winters.