Sumif Question?

J

Jay

I'm trying to figure out how to add a columns of numbers if there is a number
in an adjacent column. So for example if cell Y245 and Z245 both contain
numbers then Y245 would be added to the sum but if if Z245 did not contain a
number then Y245 would not be counted.

I'm thinking this is a SUMIF calculation but am unsure of how to input the
data properly. My Ranges are Y2:Y268 and Z2:Z68.

Any help on this would be greatly appreciated. Thanks!
 
M

Marcelo

Hi jay

try to use:

=sumproduct((isnumber($Y$2:$Y$268))*($z$2:$z$268))

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Jay" escreveu:
 
P

PCLIVE

Maybe this:

=SUMPRODUCT(--(ISNUMBER(Y2:Y268)),--(ISNUMBER(Z2:Z268)),Y2:Y268)

HTH,
Paul.
 
J

Jay

Marcelo, That worked, I just has to flip the formula (y and z). I hate to
ask but can you explain $ symbols role in the formula. That's a new one for
me?
 
M

Marcelo

it ($) is just to freeze in case of copy the formula

if you have in A1 =b1, and you copy it to a2, excel change to =b2, the $
freeze the column or the row you can have

=b1
=$b1
=b$1
=$B$1

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Jay" escreveu:
 
P

PCLIVE

The "--" coverts the items to a number, either 1 or 0. So for each
occurrence of items that are numbers, these will be registered as 1's.

The formula could also be written as:

=SUMPRODUCT((ISNUMBER(Y2:Y268))*(ISNUMBER(Z2:Z268)),Y2:Y268)

--
 
J

Jay

Thanks!!!

Marcelo said:
it ($) is just to freeze in case of copy the formula

if you have in A1 =b1, and you copy it to a2, excel change to =b2, the $
freeze the column or the row you can have

=b1
=$b1
=b$1
=$B$1

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Jay" escreveu:
 
J

Jay

Thanks!!!

PCLIVE said:
The "--" coverts the items to a number, either 1 or 0. So for each
occurrence of items that are numbers, these will be registered as 1's.

The formula could also be written as:

=SUMPRODUCT((ISNUMBER(Y2:Y268))*(ISNUMBER(Z2:Z268)),Y2:Y268)
 

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