Hi,
This is a bit tricky: I have strings taken from column A and normally do a VLOOKUP with this string against a matrix to get specific values. But this time, I need to check if the end of that string matches any string from column B and get the cell from column B (e.g. B3) that matched the criterion in order to use it as base of a VLOOKUP. The search should be case insensitive.
I was thinking about using Regex but I don’t know if I can add a range where the search condition is always a cell of that range with $ added at the end, so it would work as Regex delimiter for end of string like: hinweis$, symbol$ (from example below).
The formula for this is written in another column of the same line as the cell in column A and gets propagated to every cell in that column, so if there is a string in that line of column A, it will start the search.
An example would be:
cells in column A:
1 Spondylose
2 Cookie-Symbol
3 Betriebsystem
4 Emissionshandelssystem
5 Polarkoordinatensystem
6 Kinderrückhaltesystem
cells in column B:
1 koeffizient
2 fahrzeug
3 hinweis
4 mittel
5 symbol
6 system
7 weite
8 wesen
9 zelle
‘system’ from B6 would match for the last 4 cells in A thus result for each of these cells would be B6, result for A2 would be B5.
After that I would use the respective cell from B as reference for a VLOOKUP on the next columns
MATCH would not work, as the search string is any string from a range and the place where the range would be set is only one cell.
Best regards,
Pascal
It’s used all over the net.
I tried to extend it to a few more rows and it takes even longer.