Need help with sumif

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My spreadsheet looks like this
A B C D E
1 ABC Wireless 500 300 50
2 Hi-Tech 300 250 50
3 Top Wireless 400 250 50
4 ABC Wireless 250 250 50
5 Intel 700 250 50
6 Best Wireless 500 250 50

If A1:A6 ABC Wireless is found than add the B,C,D columns that's in same row
and sum it in E row
 
Hi!

Try this:

=SUMPRODUCT((A1:A6="abc wireless")*(B1:D6))

Or

=SUMPRODUCT((A1:A6=A1)*(B1:D6))

Biff
 
Not really a SUMIF problem - that's for matching ranges
Try =IF(A1="ABC Wireless",SUM(B1:D1),"")
best wishes
 

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