Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Eliminate #VALUE! in Formula Result

=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.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Eliminate #VALUE! in Formula Result

=if(isnumber(find("/",c30)),find("/",c30),"not found")

Change "not found" to whatever you want
--including a simple 0 or an empty string: ""



Roy A. wrote:

=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.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Eliminate #VALUE! in Formula Result

=IF(ISERROR(FIND("/",C30)),C30,your_mid_formula)
--
Gary''s Student - gsnu200773
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Eliminate #VALUE! in Formula Result



"Gary''s Student" wrote:

=IF(ISERROR(FIND("/",C30)),C30,your_mid_formula)
--
Gary''s Student - gsnu200773


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.
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Eliminate #VALUE! in Formula Result

One mo

=IF(COUNT(FIND("/",C30)),"Yes","No")


--
Biff
Microsoft Excel MVP


"Roy A." <Roy wrote in message
...
=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.



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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula to Replace or eliminate any sheetname(s) in formula string EagleOne Excel Discussion (Misc queries) 0 September 20th 06 06:36 PM
What formula will eliminate the cell with #N/A when summing? Nunzio Excel Worksheet Functions 2 August 12th 06 06:21 PM
Advanced formula - Return result & Show Cell Reference of result Irv Excel Worksheet Functions 7 May 6th 06 03:36 AM
Median result used in formula gives incorrect result vlatham Excel Worksheet Functions 4 September 21st 05 04:26 PM
Cell doesn't show formula result - it shows formula (CTRL + ' doe. o0o0o0o Excel Worksheet Functions 6 November 19th 04 03:13 PM


All times are GMT +1. The time now is 08:08 AM.

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

About Us

"It's about Microsoft Excel"