Matching a character

jollyn

New Member
Joined
Feb 21, 2024
Messages
2
Office Version
  1. 365
  2. 2019
Platform
  1. MacOS
  2. Web
Hi Im new to excel I am trying to search for a character in cell A that matches list in column B and take that cell number to extract info of column C to E.
example:
To be redundant and make sure I make sense, Are any characters in Cell B match string in cell A row 1 Yes R in row 3 I need row 3 CELLC info to go to E.
CELL A CELL B. CELLC. CELL E
1 AAREAA M sdfldjjf R efggfd
2 BBMOBB X fffdjf M sdfldjjf
3 CXYCC R efggfd X fffdjf

Can someone point me in the right direction Ive tried Vlookup, also things like =if(REGEXMATCH(A25,c3),true,false) gives me true but its has be exact position but I would like any character in column B to be search in cell A1,A2... Thank you so much for the help.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hi, welcome to the forum! Here's one option you can try with XL365.

Book3
ABCDE
1AAREAAMsdfldjjfRefggfd
2BBMOBBXfffdjfMsdfldjjf
3CXYCCRefggfdXfffdjf
4MXRMsdfldjjf
5RXMMsdfldjjf
Sheet1
Cell Formulas
RangeFormula
D1:D5D1=XLOOKUP(TRUE,ISNUMBER(FIND($B$1:$B$3,A1)),$B$1:$B$3,"")
E1:E5E1=XLOOKUP(TRUE,ISNUMBER(FIND($B$1:$B$3,A1)),$C$1:$C$3,"")
 
Upvote 0
Solution
Hi, welcome to the forum! Here's one option you can try with XL365.

Book3
ABCDE
1AAREAAMsdfldjjfRefggfd
2BBMOBBXfffdjfMsdfldjjf
3CXYCCRefggfdXfffdjf
4MXRMsdfldjjf
5RXMMsdfldjjf
Sheet1
Cell Formulas
RangeFormula
D1:D5D1=XLOOKUP(TRUE,ISNUMBER(FIND($B$1:$B$3,A1)),$B$1:$B$3,"")
E1:E5E1=XLOOKUP(TRUE,ISNUMBER(FIND($B$1:$B$3,A1)),$C$1:$C$3,"")
Thank you Guru FormR! Big Bow of Gratitude!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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