formula help???

P

Phil

I need help in seting up a formula? What I need to do is
have column "A" either a blank or an "X". I need the formula to add up all
the numbers in column "B" That have a blank in column "A" Please Help...
Send formula to (e-mail address removed) TIA.......
 
A

Anders S

Phil,

Try

=SUMPRODUCT((A1:A24="")*1,B1:B24)

Adjust the ranges to suit.

HTH
Anders Silvén
 
T

The Red Cardinal

Phil said:
I need help in seting up a formula? What I need to do is
have column "A" either a blank or an "X". I need the formula to add
up all the numbers in column "B" That have a blank in column "A"
Please Help... Send formula to (e-mail address removed) TIA.......


You need to use the SUMIF command:

=SUMIF(A:A, "", B:B)

This will add the corresponding value in column B for every row in A which
is blank.
 
T

The Red Cardinal

The said:
You need to use the SUMIF command:

=SUMIF(A:A, "", B:B)

This will add the corresponding value in column B for every row in A
which is blank.


P.S. (Add your own row numbers to the formula obviously!)
 

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

Top