Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Bob is offline
external usenet poster
 
Posts: 972
Default What does ISERROR look at besides the 7 Error Types?

I have a formula [=SUMPRODUCT(--(ISERROR(A2:CY5000)))] in my worksheet that
tells me that I have 24 "errors". After accounting for all the cells that
have either #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL! in them,
I'm still left with 8.
Can anyone tell me what the 8 other "errors" may be?
Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default What does ISERROR look at besides the 7 Error Types?

ISERROR function is cover all kind the errors


"Bob" wrote:

I have a formula [=SUMPRODUCT(--(ISERROR(A2:CY5000)))] in my worksheet that
tells me that I have 24 "errors". After accounting for all the cells that
have either #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL! in them,
I'm still left with 8.
Can anyone tell me what the 8 other "errors" may be?
Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Bob is offline
external usenet poster
 
Posts: 972
Default What does ISERROR look at besides the 7 Error Types?

Like what?


"Teethless mama" wrote:

ISERROR function is cover all kind the errors


"Bob" wrote:

I have a formula [=SUMPRODUCT(--(ISERROR(A2:CY5000)))] in my worksheet that
tells me that I have 24 "errors". After accounting for all the cells that
have either #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL! in them,
I'm still left with 8.
Can anyone tell me what the 8 other "errors" may be?
Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default What does ISERROR look at besides the 7 Error Types?

ISSERROR returns TRUE if value is any error
value(#N/A,#VALUE!,#REF!,#DIV/0!,#NUM!,#NAME?, or #NULL)

"Bob" wrote:

Like what?


"Teethless mama" wrote:

ISERROR function is cover all kind the errors


"Bob" wrote:

I have a formula [=SUMPRODUCT(--(ISERROR(A2:CY5000)))] in my worksheet that
tells me that I have 24 "errors". After accounting for all the cells that
have either #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL! in them,
I'm still left with 8.
Can anyone tell me what the 8 other "errors" may be?
Thanks.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Bob is offline
external usenet poster
 
Posts: 972
Default What does ISERROR look at besides the 7 Error Types?

Yes, I know (refer to my original message). What I am trying to ascertain is
what other errors (besides #N/A,#VALUE!,#REF!,#DIV/0!,#NUM!,#NAME?, and
#NULL) is ISERROR capturing when used the formula:
=SUMPRODUCT(--(ISERROR(A2:CY5000)))


"Teethless mama" wrote:

ISSERROR returns TRUE if value is any error
value(#N/A,#VALUE!,#REF!,#DIV/0!,#NUM!,#NAME?, or #NULL)

"Bob" wrote:

Like what?


"Teethless mama" wrote:

ISERROR function is cover all kind the errors


"Bob" wrote:

I have a formula [=SUMPRODUCT(--(ISERROR(A2:CY5000)))] in my worksheet that
tells me that I have 24 "errors". After accounting for all the cells that
have either #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL! in them,
I'm still left with 8.
Can anyone tell me what the 8 other "errors" may be?
Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7,247
Default What does ISERROR look at besides the 7 Error Types?

Those are the only errors I know of, and those are only values defined in
XLCVErr. You could try scanning the cells and see what turns up.

Sub AAA()
Dim V As Variant
Dim Rng As Range
For Each Rng In ActiveSheet.UsedRange.Cells
V = Rng.Value
If IsError(V) = True Then
Select Case V
Case CVErr(xlErrNA), CVErr(xlErrName), _
CVErr(xlErrDiv0), CVErr(xlErrNull), _
CVErr(xlErrRef), CVErr(xlErrNum), _
CVErr(xlErrValue)
' expected errors
Case Else
MsgBox "OTHER ERROR: " & Rng.Address & " " & CStr(V)
End Select
End If
Next Rng
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)


"Bob" wrote in message
...
I have a formula [=SUMPRODUCT(--(ISERROR(A2:CY5000)))] in my worksheet that
tells me that I have 24 "errors". After accounting for all the cells that
have either #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL! in
them,
I'm still left with 8.
Can anyone tell me what the 8 other "errors" may be?
Thanks.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 03:59 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"