Forum Discussion
Tracey Hole
Aug 07, 2018Copper Contributor
Need to match two columns and return a further field
Hi, I am new to this so here goes. I want to match column A and column D and return Column B entry in Column E where they match. Can anyone help me with a formula please?
SergeiBaklan
Aug 07, 2018MVP
Hi Tracey
In column A you have text and in column D numbers. If you transform what both will be text or both numbers your formula works.
Or you may make transformation within the formula like
=IFERROR(VLOOKUP(TEXT(D3,"General"),$A$2:$B$34,2,FALSE),"")
and attached
- Tracey HoleAug 07, 2018Copper Contributor
Thank you, that worked perfectly.
- SergeiBaklanAug 07, 2018MVP
You are welcome