Sum formula

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

Guest

In table format

code hrs code hrs code hrs total
10 8 20 8 42 10 16
12 6 11 1 40 8 15
I need to sum hrs where the code does not equal 42 for each row. What is the
best way to accomplish task?
 
=SUMPRODUCT(--($B$1:$F$1="hrs"),--(A2:E2<>42),(B2:F2))

With nice headers in row 1.

Notice how the headers look at B:F, but the codes look at A:E, and we sum B:F.
 
Thanks!!!
--
Bonita


Dave Peterson said:
=SUMPRODUCT(--($B$1:$F$1="hrs"),--(A2:E2<>42),(B2:F2))

With nice headers in row 1.

Notice how the headers look at B:F, but the codes look at A:E, and we sum B:F.
 

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