Averages on Reports

M

Michael Comtois

Is there a way to average numbers in a certain field
based on the value in another field? For instance, if
the record is type D, select the values from the
turnaround field and average all the values. I would
like to do this all on the report if possible. Help
would be great! I am using Access 2002.

Mike
 
M

Marshall Barton

Michael said:
Is there a way to average numbers in a certain field
based on the value in another field? For instance, if
the record is type D, select the values from the
turnaround field and average all the values. I would
like to do this all on the report if possible. Access 2002

Try a text box in a group footer or the report footer with
an expression like:

=Avg(IIf([type] = "D", [turnaround], Null))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top