#NUM! Error

D

Dick

Getting #NUM! error with this formula
=SUMPRODUCT((Sheet1!A:A="Alkalume 143")*(Sheet1!B:B="January"),Sheet1!
D:D)
Can someone help as to why.
Using excel 2003, saved as xls
Thanks in advance
 
J

joeu2004

Getting #NUM! error with this formula
=SUMPRODUCT((Sheet1!A:A="Alkalume 143")
*(Sheet1!B:B="January"),Sheet1!D:D)
Can someone help as to why.
Using excel 2003, saved as xls

XL2003 does not support references in the form A:A in SUMPRODUCT.
That is a feature of XL2007 and later.

In XL2003, you need to write A1:A1000 or whatever is appropriate.
 
D

Dave Peterson

You can't use the entire column in xl2003. (xl2007+ will allow them.)

If you have any non-numeric (non-error) data in column D, you may want to use
this syntax:

=SUMPRODUCT(--(Sheet1!A1:A111="Alkalume 143"),
--(Sheet1!B1:B111="January"),
Sheet1!D1:D111)

(adjust the rows to match your data)

Just like =sum(d1:d111) will ignore non-numeric text values, so will
=sumproduct() when you use commas (not multiply).
 

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

Date issue 1
EXCEL - IF(IFERROR(VLOOKUP question 0
#NUM! Error for named formula 5
Help with formula 3
sumproduct problem 5
#NUM! 7
sumproduct 8
Modify a Formula 4

Top