Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I would like to be able to search a cell for a certain "character" and if it
contains that character, I would like another cell to say one thing and if it does not contain the Character I am looking for, the cell will say something else. I hope this says enough. |
#2
![]() |
|||
|
|||
![]()
One way
=IF(ISNUMBER(FIND("Z",A1)),"one thing","something else") Regards, Peo Sjoblom "Matt" wrote: I would like to be able to search a cell for a certain "character" and if it contains that character, I would like another cell to say one thing and if it does not contain the Character I am looking for, the cell will say something else. I hope this says enough. |
#3
![]() |
|||
|
|||
![]()
Try this for the character r in D1
=IF(COUNTIF(D1,"*r*")=0,"not exist","exist") -- Regards Ron de Bruin http://www.rondebruin.nl "Matt" wrote in message ... I would like to be able to search a cell for a certain "character" and if it contains that character, I would like another cell to say one thing and if it does not contain the Character I am looking for, the cell will say something else. I hope this says enough. |
#4
![]() |
|||
|
|||
![]()
The two most apparent options involve FIND or SEARCH.
FIND is case sensitive and SEARCH is not. Here is sample formula =IF(ISNUMBER(FIND("p",A1)),"say one thing","say something else") "Matt" wrote in message ... I would like to be able to search a cell for a certain "character" and if it contains that character, I would like another cell to say one thing and if it does not contain the Character I am looking for, the cell will say something else. I hope this says enough. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Returning left part of cell before a character | Excel Discussion (Misc queries) | |||
Searching text in a cell range | Excel Worksheet Functions | |||
copy paste cell character limit | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions | |||
Insert a standard character in a cell of excel. | Excel Worksheet Functions |