Option Explicit
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
Dim strSearchInfo As String
Dim strFoundInfo As Date
strSearchInfo = ActiveCell.Value
Application.ScreenUpdating = False
If Not Intersect(Target, Range("A2:A10")) Is Nothing Then
Workbooks("Book2").Activate
Cells.Find(What:=strSearchInfo, LookIn:=xlValues, LookAt:= _
xlPart, SearchOrder:=xlByRows, searchdirection:=xlNext, MatchCase:=False) _
.Activate
strFoundInfo = ActiveCell.Offset(0, 1).Value
Workbooks("Book1").Activate
Range(Target.Cells.Address).Offset(0, 1).Value = strFoundInfo
End If
Application.ScreenUpdating = True
End Sub
/[code]
When you select any cell in Book1, the date from the corresponding cell in Book2 is copied to the adjacent cell in column B.
Rick