Array formula help

S

scott

Currently I have
Individual Options
Name =SUMIF(Options!$A$8:$A$134,B4,Options!$B$8:$B$134)
which works fine.

I am trying to add an extra detail to a summary sheet for the exercise
price of options, so the sheet would look like:
Name Price Price Price Total


I am not sure why this array formula keeps returning #VALUE# for the
price breakout
=SUM((Options!$A$8:$A$134=B4)*(Options!$D$8:$D$134=C3)*Options!$B$8:$B$134)
or
=SUM((Options!$A$8:$A$134=B4)*(Options!$D$8:$D$134=C3)*(Options!$B$8:$B$134))

Detail spreadsheet = "Options"
(Options!$A$8:$A$134=B4) A8:A134 is the transaction data with Col B
being the employee B4 is the corresponding employee on the summary sheet.

(Options!$D$8:$D$134=C3) is the exercise price for the transaction c3 =
price on summary sheet.

Any advise on why the formula is returning #Value#

Thanks,
Scott
 
G

Guest

You need to enter it with ctrl + shift & enter
it can be replaced with

=SUMPRODUCT(--(Options!$A$8:$A$134=B4),--(Options!$D$8:$D$134=C3),Options!$B$8:$B$134)

entered normally


Regards,

Peo Sjoblom
 
B

Bob Phillips

Try

=SUMPRODUCT(--(Options!$A$8:$A$134=B4),--(Options!$D$8:$D$134=C3),Options!$B
$8:$B$134))

which is not an array formula


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
S

scott

Thanks. I tried that.

I think I found the problem- there was text in the column C causing both
the array and the sumproduct formulas to not work.
 

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

formula question 2
Charts. 6
formula not calculating right 6
I am in search of formula 3
Linking Formula 2
Excel 2002: How to add without splitting blocks ? 3
VLOOKUP using a dynamic range 1
sum formula 1

Top