Quote:
|
Originally Posted by paulzak
I think I tried the IsError (you mean IsErr?) without success but I'll try again.
|
The Worksheet Formula is,
IsErr()
The IsError funtion is,
IsError()
You would use the isError function in a Procedure with Excel
VB script.
Make sure you refer to the Range in the isError expression and not the cell address as a string value. For example:
?isError("D14") 'This returns False as it is checking the text string "D14"
?isError(Range("D14")) 'This returns True if there is an error in the range.
Looks obvious but it can be an easy mistake to make.