View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default using SUMIF with ISNUMBER

Try this:

=SUMIF(C139:C152,"<1E100",D139:D152)


--
Biff
Microsoft Excel MVP


"Bob Arnett" wrote in message
...
I have a column of figures (D139:D152) and want to add only the numbers
that
are next to a cell (C139:C152) with a numerical value (not text). So I
used
the formula:

=SUMIF(C139:C152,isnumber,D139:D152)

Since I'm not familiar with SUMIF syntax, I've also tried other
variaitions
like:

=SUMIF(C139:C152,isnumber(),D139:D152)
=SUMIF(C139:C152,"isnumber",D139:D152)
=SUMIF(C139:C152,"=isnumber",D139:D152)
=SUMIF(C139:C152,"=isnumber()",D139:D152)
=SUMIF(C139:C152,"isnumber()",D139:D152)

None of these work so what is the proper way of writing this formula?