View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Check for error.type in same cell

Try this:

=IF(ISERROR(A1),IF(ERROR.TYPE(A1)=6,"Yes","No"),"" )

--
Biff
Microsoft Excel MVP


"art" wrote in message
...
Hello all:

Is it possible to use the formula Error.type to check if the cell has a
certain error? So, for example, in cell A1 I start with
=if(error.type("the
cell itself with a formula")= 6, "yes","no"). Is this possible? To check
for
the cell itself if the result of the formula results in an error it should
result to yes or no.

Thanks.

Art.