View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Raul Raul is offline
external usenet poster
 
Posts: 86
Default Use SUMPRODUCT and avoid rows with #REF!

This is a great help.

Thanks,
Raul


"Bob Phillips" wrote:

=SUM(IF(ISNUMBER(H6:H75),H6:H75)*(IF(ISNUMBER(G6:G 75),G6:G75)))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.
Excel will automatically enclose the formula in braces (curly brackets), do
not try to do this manually.
When editing the formula, it must again be array-entered.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Raul" wrote in message
...
I want to use SUMPRODUCT on several columns that may have some #REF!
errors.
Is this possible?

I've played around with
"=SUMPRODUCT(--(ISNUMBER(H64:H75)),--(ISNUMBER(G64:G75)))"
to get a feel for this function and it returns the correct number of rows
but I don't know how to get actual values for these ranges.

Thanks in advance,
Raul