You can try VLOOKUP() or INDEX/MATCH
e.g. =VLOOKUP(A2,'[yourfile.xlsx]sheet1'!$A$1:$E$10,5,FALSE)
or =INDEX('[yourfile.xlsx]sheet1'!$E$1:$E$10,MATCH(A2,'[yourfile.xlsx]sheet1'!$A$1:$A$10,0))
Both will extract date from column E of yourfile.xlsx, sheet1 where column A of that file matches A2 of your active sheet....
|