View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JE McGimpsey
 
Posts: n/a
Default How can I ignore an #N/A value in a =SUM() formula?

One way (array-entered: CTRL-SHIFT-ENTER or CMD-RETURN):

=SUM(IF(ISNUMBER(rng),rng))

In article ,
"JD" wrote:

I have a range of cells that I need to total. Problem is many of these cells
currently contain formulas that have an #N/A value in them because they are
included in a graph and I don't want to plot them until monthly data is
entered during the year.
How can I total the cells that have a numerical value and ignore those that
still have an #N/A ?