Sum column based upon corresponding values

  • Thread starter Thread starter Dan-X !
  • Start date Start date
D

Dan-X !

I know this is probably simple but I can't get anything to work. I
have a formula that I took from another document to use in a new
project. The formula looks at the values of a specific range in
another workbook and then counts the values of a corresponding column.
However, I want to change this formula so that it sums the values
instead of counting.

=SUMPRODUCT((QM03_template.xls!$A$2:$A$2000={"FEMA Manual
Determination"})*(QM03_template.xls!$E$2:$E$2000<>""))
 
Dan,

Your formula counts rows with "FEMA..." in column A and are nonblank in
column E. If the values to be summed are in column E, try:

=SUMPRODUCT((QM03_template.xls!$A$2:$A$2000={"FEMA Manual
Determination"})*(QM03_template.xls!$E$2:$E$2000))
 

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

Back
Top