A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
The following actually did exactly what I needed it to do-
Put the following in column F and drag it down and then copy the data over
=IFERROR(IF(MATCH(D1,$A:$A, 0), INDEX($A:$B, MATCH(D1,$A:$A, 0), 2), E1), "")
Hi,
That's a more complicated way of doing what the formula I gave you does. The one I gave you is the way to go. I deleted the no match message to return an empty cell.
=IFERROR(VLOOKUP(D2,$A$2:$B$6000,2,FALSE),"")