I have an Excel workbook with two sheets. The first sheet has two columns: ID and Date. The second also has those columns, but it has a lot of IDs that aren't in sheet 1; sheet 1 has 897 and sheet 2 has 1002. I'm trying to use a VLookup to find each ID in sheet 2 and paste the start date into the column in sheet 2.
When I do it like this, it pastes the value in column two from the second sheet instead of the first.
=VLOOKUP(A2,Sheet1!$A$2:Sheet1!$B$900,2,FALSE)
When I add an indirect reference (=VLOOKUP(INDIRECT(A2),Sheet1!$A$2:Sheet1!$B$900,2,FALSE)
), it gives me a reference error.
Any idea what I'm doing wrong?