View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default Sumproduct with #N/A in range

Maybe something like this:

=SUM(IF($A$21:$A$36=11,IF(NOT(ISNA($B$21:$B$36)),$ B21:B36,0)))
which is an array formula (enter using cntl-shift-enter instead of just enter)

--
Kevin Vaughn


"Deeds" wrote:

I have a column B of names that is part of my sumproduct formula...there are
some cells in this column that contain #N/A. I have to be able to complete
the sumproduct formula by ignoring these errors... Is there something I can
add to the sumproduct formula to ignore these errors in column B?

Thanks again!