Sumif over multiple columns

J

Josh O.

I am trying to total some columns based on an invoice number, but I can't get
the formula to work.
I have the following columns:
Invoice 1|Amount1|Invoice2|Amount2|Invoice3|Amount3|Invoice4|Amount4

In another column I have an invoice number. I need the formula to add the
amount if the invoice column just to the left contains that invoice number,
for each column.

For example in A1 is invoice 1234. I need the formula to add all amounts
from Columns Amount1, Amount2, Amount3, Amount4 if the corresponding Invoice
column matches A1.

I tried using the Sumif and Sumproduct, but it is only returning a #VALUE!
error.
 
J

JulieD

Hi Josh

one option
=SUMIF(A2:A5,J1,B2:B5)+SUMIF(C2:C5,J1,D2:D5)+SUMIF(E2:E5,J1,F2:F5)+SUMIF(G2:G5,J1,H2:H5)

(i've put the criteria in J1)

Cheers
JulieD
 

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

Similar Threads


Top