Thread: Counting errors
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ram[_2_] Ram[_2_] is offline
external usenet poster
 
Posts: 5
Default Counting errors

On May 14, 3:27*am, kittronald wrote:
In Microsoft Excel 2007, how can you count the number of Excel errors
(i.e., #VALUE!, #N/A, etc.) in a named range ?

Using =COUNTIF(named_range,"#*") doesn't work with Excel error values.

- Ronald K.


Hi You can use following array formula also

={SUM(ISERROR(named_range)*1)}
or
={SUM(IF(ISERROR(named_range),1,0))}