Forum Discussion
lianda88
Nov 03, 2022Copper Contributor
IF this than that function in excel
Hi, I am wondering if there is a formula for the following: Column T (50 rows) represents descriptions Column V (50 rows) represents a code which is linked to the description For example: ...
- Nov 03, 2022
=IFERROR(INDEX($V$1:$V$50,MATCH(H1,$T$1:$T$50,0)),"")You can try INDEX and MATCH. An alternative could be VLOOKUP. If you work with Office365 you can apply XLOOKUP.
OliverScheurich
Nov 03, 2022Gold Contributor
=IFERROR(INDEX($V$1:$V$50,MATCH(H1,$T$1:$T$50,0)),"")You can try INDEX and MATCH. An alternative could be VLOOKUP. If you work with Office365 you can apply XLOOKUP.
lianda88
Nov 03, 2022Copper Contributor
YES IT WORKS!!! Thank you so much for your response!