I have a spreadsheet that consists of information about donations to an organization and the names of people who gave the donations. These two kinds of information came from different sources and are linked by an ID number. Each donor may have given more than one donation, but each ID number is identified with only one name.
For example:
Donor ID Donation Amount
1 $500
1 $400
2 $900
Donor ID Donor Name
1 John Doe
2 Mary Smith
I would like an output that sums all the donations that one person gave, like this:
Donor Amount
John Doe $900
Mary Smith $900
So what I want is a function that does this: "Scan all cells within range, and sum all of the cells within the range matching the criteria I specify."
SumIF does not do this because it will not add individual cells to the total, as far as I can tell; it will only sum the whole range if the criteria are satisfied.
2007-09-01
11:29:10
·
4 answers
·
asked by
drshorty
7
in
Computers & Internet
➔ Software