I am trying to perform vlookup on column A of sheet1 with column A of sheet2 and I have to display the value from column B of sheet2 to column B of sheet1.
The values in Column A of sheet1 and sheet2 are dates.So I am matching those two dates using vlookup and trying to display the third value,but its not working.My day column of sheet1 is
Day | Final_Conversions
---------- | ------
27-10-2016
21-11-2016
15-12-2016
13-02-2017
And my sheet2 has
Day | Conversions
---------- | ------
13-02-2017 | 23
15-12-2016 | 15
21-11-2016 | 400
23-11-2016 | 60
Now I want that if my date is there in sheet2 then conversion value should be dipslayed in sheet1. I tried this but ts not working =VLOOKUP(A2,'sheet2'!$A$1:$B$4,2,0)