Hello,
I have 2 excel file with
file 1
| color_name | |
| Blue my baloon b | |
| blue & a | |
| Blue a | |
file 2
| color_name | color_name |
| blue blue | 1234566 |
| blue c | 1234577 |
| | |
| | |
I would like to use the only first digit of the color_id(12345) and the name(blue) and match all the record from the file 1 by name(blue) and present all by the first 5 letter(12345) . would like to get this please:
| color_name | color_id |
| Blue my baloon b | 12345 |
| blue & a | 12345 |
| Blue a | 12345 |
Thanks