query calculation question

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

I have a table with multiple entries for the same
person. I need a query that will match two of the fields
then add the remaining two numeric fields together to
give me a total.

Any help will be greatly appreciated.
 
Create a totals query. Have "group by" on the 2 fields
that you need to match. Have "sum" oon the 2 fields that
you want to add.
 
Back
Top