Searching a column for any partial matches from another cell text

greg93

New Member
Joined
Jan 30, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi all,

Hopefully I can make this make sense,

In cell A1 I want a formula that would search column C for a partial match with any text currently in B1

So B1 shows car and one of the cells in column C contains Car Allowance this should return into cell A1

Any help would be great
Thanks
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Maybe use the FILTER function.

Here is an example:
1707239136850.png


and here is the formula in cell A1:
Excel Formula:
=FILTER(C1:C4,ISNUMBER(SEARCH($B$1,C1:C4)))
 
Upvote 0
Solution
How about:
If you don't want case sensitivity replace FIND with SEARCH

Libro1
ABC
1Another carcarCar 1
2Car 2
3OtherVehicle1
4OtherVehicle2
5Car 3
6Another car
Hoja1
Cell Formulas
RangeFormula
A1A1=FILTER(C1:C1000, ISNUMBER(FIND(B1,C1:C1000)))
 
Upvote 0
Thank you both! These were great and exactly what I needed
 
Upvote 0
You are welcome.
Glad we were able to help!
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,977
Members
449,095
Latest member
Mr Hughes

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