'Change the number to the text assigned to it
Solution 1:[1]
you have to create a bran new column with this formula (for example to write into H2..): =index(G:G; match(C2;F:F;0))
Solution 2:[2]
You can utilize match() and index() function in Excel.
match() will return the position of an item in an array. The item here is C2 in featuresval_id array. The array we want to search into is featuresval_id2. The 0 is saying that we want exact match.
MATCH(C2,featuresval_id2, 0)
After finding the relative position, we can use index() to get the value in another array - which you call name
=INDEX(name,MATCH(C2,featuresval_id2, 0))
Hope that helps.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | cco |
| Solution 2 | Clover |


