Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a text string that I want to search to find a particular sub-string
and I am using the SEARCH function. If the result fails to find it, the result is the #VALUE!. Is there a way to display a zero (0) instead - I would like to manipulate the result. Thanks. -- David |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
use isserr
=IF(ISERR(SEARCH("ccc",G8)),"",SEARCH("ccc",G8)) -- Don Guillett SalesAid Software "dm2504" wrote in message ... I have a text string that I want to search to find a particular sub-string and I am using the SEARCH function. If the result fails to find it, the result is the #VALUE!. Is there a way to display a zero (0) instead - I would like to manipulate the result. Thanks. -- David |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For clarity
to show a zero it would be modified to =IF(ISERR(SEARCH("ccc",G8)),0,SEARCH("ccc",G8)) -- Regards, Tom Ogilvy "Don Guillett" wrote in message ... use isserr =IF(ISERR(SEARCH("ccc",G8)),"",SEARCH("ccc",G8)) -- Don Guillett SalesAid Software "dm2504" wrote in message ... I have a text string that I want to search to find a particular sub-string and I am using the SEARCH function. If the result fails to find it, the result is the #VALUE!. Is there a way to display a zero (0) instead - I would like to manipulate the result. Thanks. -- David |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Should Have a History Function. | Excel Worksheet Functions | |||
linear interpolation function in excel | Excel Worksheet Functions | |||
@ and "function not valid" error (Excel 2003) | New Users to Excel | |||
Access Module coded converted to Excel Function | Excel Discussion (Misc queries) | |||
I cant use englisch function names in a swedich version of excel | Excel Discussion (Misc queries) |