Eliminate #VALUE! in Formula Result

  • Thread starter Thread starter Roy A.
  • Start date Start date
R

Roy A.

=FIND("/",C30)
If the above formula does not find the slash #VALUE! is returned. How do I
eliminate that result and obtain a number?

I am attempting to setup a telephone directory for a condominium
association. I am attempting to obtain TEXT following the slash using the MID
function. Most of the text I am searching does not contain a slash.

If anyone has a template that might assist me in this endeavor, it would be
greatly appreciated.
 
=if(isnumber(find("/",c30)),find("/",c30),"not found")

Change "not found" to whatever you want
--including a simple 0 or an empty string: ""
 
Gary''s Student said:
=IF(ISERROR(FIND("/",C30)),C30,your_mid_formula)

Thank you Gary that worked perfectly. I was using the same formula but I did
not have the second closing parathesis after the first find. I must be having
a memory lapse.
Thanks again.
 
Back
Top