FORMULA HELP!!!

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

Guest

I am trying to do the following:

Issue- If B1:B50=Yes and D1:D50=(A specific name) then sum all totals
(Dollar Amounts) in C1:C50 where both of these conditions are true. Can
anyone help. Here is the forumula that I am currently doing, but my result
is always the $VALUE! error.

=SUM(IF(B1:B50=Y*D1:D50=(Specific Name),N6:N45,0))
 
There are many errors there,

for one thing the arrays should be of the same size


=SUM(IF(B1:B50="Y",IF(D1:D50="Specific Name",N1:N50)))


entered with ctrl + shift & enter

it can also be written

=SUMPRODUCT(--(B1:B50="Y"),--(D1:D50="Specific Name"),N1:N50)

entered normally
 

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