View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
RagDyeR RagDyeR is offline
external usenet poster
 
Posts: 3,572
Default SUMIF using #N/A error as criteria

These work:

=SUMIF(C3:C32,#N/A,B3:B32)

=SUMIF(C3:C32,NA(),B3:B32)
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"Dave F" wrote in message
...
Is it possible to use the #N/A error as criteria when using SUMIF?

I'm thinking of something along the lines of
=SUMIF(B3:B32,ISNA(C3:C32)), either entered as an array formula or as
a conventional formula, however, I keep getting 0 returned. The value
should be greater than 0.

(And, yes, the #N/A values in C3:C32 are logical values returned as
the result of a formula; they are not hard-coded in.)

Thanks.