functions

mort1703

Active Member
Joined
Sep 13, 2008
Messages
266
Hi

I am looking for a way using an excel function, to search a cell for a specific character and return a true or false.
the cell location starts in column A3 and could be any number of rows.
not all cells in column A will have a match for the character requested.
the character requested could be anywhere in the cell.

Thanks
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Hi Mort1703,

It's not clear if you want one response or each row checked so E3 checks the whole column, column H checks for a non case sensitive match and column I case sensitive:

Mort1703.xlsx
DEFGHI
1Search for:NTextNot Case SensitiveCase Senstitive
2Lorem ipsum dolor sit amet, consectetur adipiscing elit.TRUEFALSE
3Anywhere=TRUEVivamus at nisi non erat dapibus accumsan.TRUEFALSE
4Fusce nec urna eu lacus aliquam eleifend quis eu tellus.TRUEFALSE
5Nullam sed dui sit amet eros egestas egestas.TRUETRUE
6Vivamus. Nic elit eget risus iaculis.TRUETRUE
7Proin faucibus non felis.TRUEFALSE
8Etiam tincidunt lacus id bibendum mattis.TRUEFALSE
9Non sit amet urna nec dolor lobortis auctor.TRUETRUE
10Quisque scelerisque massa quis augue rutrum custard.FALSEFALSE
11Nunc tincidunt enim non interdum hendrerit.TRUETRUE
12Sed ante maximus, cursus nisl sed, blandit ligula.TRUEFALSE
13Vitae ipsum sec ipsum imperdiet.FALSEFALSE
Sheet1
Cell Formulas
RangeFormula
H2:H13H2=ISNUMBER(SEARCH($E$1,G2))
I2:I13I2=ISNUMBER(FIND($E$1,G2))
E3E3=NOT(ISNA((MATCH("*"&$E$1&"*",$G$2:$G$9999,0))))
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,449
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top