
Originally Posted by
CAntosh
ProtonLeah doesn't appear to be online, so I hope he doesn't mind me jumping in - Where is the address located on sheet 2? With VLOOKUP, the first column in your lookup range (C3:D388) should be the column you're searching for a match in, then the "2" in your formula tells Excel to show the result from the 2nd column of that lookup range. Your formula:
=VLOOKUP($D2,Sheet2!C3:D388,2,FALSE)
Tries to look up $D2 in Sheet2 column C and should return Sheet2 column D from that match. If the address you want is in Sheet2 column D, it looks to me like you want:
=VLOOKUP($D2,Sheet2!$A$3:$D$388,4,FALSE)
This will look in sheet2 column A for a match and return the corresponding result in sheet2 column D. Hopefully that helps?
Bookmarks