Hello, new here
I guess I need some help, I spend too long time to find a solution…
Given a string “name1+name2+name42” in a cell and a range of 2 columns defining values for each words
name1 | 1
name2 | 2
... |
name42 | 63
... |
I would like to get the corresponding substitution 1+2+63 with a worksheet formula.
I tried different approaches with regex, substitute, index, match, nesting them etc ! with no luck, all I found is how to search a value in a range of cell but not a set of values inside the content of a cell to apply multiple replacements. (I’m used to VBA and that would be easy but to learn and setup LO macros is another story!..)
ex:
A1 B1 (expected) C1 D1
name1+name2+name42 1+2+63 name1 1
name3 23 name2 2
name1+name42+unk 1+63+unk ...
name42 63
Thank you!