Forum Discussion
foudou
Jul 08, 2021Copper Contributor
automatic filling of a text of in a cell according to a series of letters of an adjacent cell,
Hello I'm trying to find a formula that allow me to automaticaly fill a cell with name of places (Copenhagen DK or Aarhus DK) according to a series of letters of an adjacent cell. Copenhagen, DK...
- Jul 08, 2021
Hi foudou
You need to create somewhere in your workbook a mapping table as the grey one below
Then, according to the above mapping table, formula in B2:
=VLOOKUP(LEFT(A2,7), D$3:E$6, 2, FALSE)Corresponding sample attached