Forum Discussion
John_Hartman
Nov 08, 2023Copper Contributor
How can I use XLOOKUP to find the cell with a contains?
I have a table that has a cell that concatenates groups. This cell may have multiple values and they're not always in the same order due to the program that spits them out. Name Group (desir...
- Nov 08, 2023
=INDEX($G$3:$G$6,XMATCH(TRUE,ISNUMBER(SEARCH($G$3:$G$6,B2))))
This formula works in my Excel for the web sheet.
OliverScheurich
Nov 08, 2023Gold Contributor
=INDEX($G$3:$G$6,XMATCH(TRUE,ISNUMBER(SEARCH($G$3:$G$6,B2))))
This formula works in my Excel for the web sheet.
John_Hartman
Nov 08, 2023Copper Contributor
That's exactly what I needed! I figured the answer was going to use something other than XLOOKUP. I'll keep INDEX and XMATCH in my toolbelt from now on.
Thank you
Thank you