Ok, here's the code:
[Code:
Dim PeriodBook As String
Dim wb1 As Workbook
Dim wb2 As Workbook
Dim ThisYear As Integer
'
Set wb1 = Active Workbook
PeriodBook = Range("B1").Value
ThisYear = Range("B2").Value
Workbook.Open Filename:= _
PeriodBook
Set wb2 = Active Workbook
Cells.Find(What:=ThisYear, After:=ActiveCell, LookIn:=x1Formulas, LookAt _
:=x1Part, SearchOrder:=x1ByRows, SearchDirection:=x1Next, MatchCase:= _
False, SearchFormat:=False).Activate
ActiveCell.Offset(1,12).Select
Selection.Copy
wb1.Activate
Range("A4").Select
ActiveCell.Paste
Note that for the last Range Reference for A4, A4 and A5 are merged.
Thank you.