Create a query and paste this into it. You will have to change the names of the table and fields to match your actual table/field names:
select month([mydate]) as dt_month,avg([field1),avg([field2),avg([field3)
from [mytable]
where month([mydate]) = [Please enter a month]
group by month([mydate])
When you run the query it will prompt you for the month, enter 1 thru 12
That query assumes you have more than one record for each month and you want to average each field separately. If you want to average the fields in the actual record do:
select month([mydate]) as dt_month,([field1)+[field2]+[field3])/3
from [mytable]
where month([mydate]) = [Please enter a month]
[/b]
Mike Pastore
Hats off to (Roy) Harper