Sub moduletwo()
Workbooks.Open Filename:= _
"N:\PAYROLL\Leanne\Example - Macro Work LB only\Excel Spreadsheet Header Row1.xlsx"
Range("A2").Select
Workbooks.Open Filename:= _
"N:\PAYROLL\Leanne\Example - Macro Work LB only\PRE_amended.xlsx"
Dim rCopy As Range
Dim rPaste As Range
Dim varFindItems
Dim varItem
' array of items to find
varFindItems = Array("RunID", "RunDate", "EeRef", "Name", "Dept", "CostCentre", "Branch", "StartDate", "LeaveDate", "TaxCode", "NINumber", "NILetter", _
"TaxablePay", "NIableTP", "TotalNICs", "PreTaxAddDed", "PostTaxAddDed", "Basic Pay", "Back Pay", "Salary Adj", "Pension Uplift", "Car Allowance", "Holiday Pay", _
"ESPP Benefit", "ESPP Refund", "Rsu Gain", "Option Gain", "Bonus", "High Perf Bonus", "MBO Bonus", "Net Bonus", "Referral Bonus", "Relocation Allowance", "PILON", _
"Redundancy Gross", "Redundancy Nett", "Severance Gross", "Severance Nett", "Cycle Scheme", "Sal.Exchange", "Childcare", "Educ.Sacrifice", "Unpaid Leave", _
"Maternity Pay", "TotalAbsencePay", "Nu.Per.Pension", "Healthcare", "ESPP", "ESPP Already Received", "RSU Gain Less Tax Witheld", "Rsu Ers Nic Adj", "Co Loan" _
, "Option Gain Less Tax", "Option Gain Already Received", "Option Ers Nic Adj", "Advance Pay", "NegNetBf", "NegNetCf", "StudentLoan", "Tax", "NI", "AEO", _
"NetPay", "ErNI", "PenEr")
' now process each item in the array
For Each varItem In varFindItems
Set rCopy = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=True, SearchFormat:=False)
' only continue if it was found
If Not rCopy Is Nothing Then
Set rCopy = rCopy.Offset(1, 0)
Range(rCopy, rCopy.End(xlDown).Offset(-1, 0)).Copy
Windows("Excel Spreadsheet Header Row.xlsx").Activate
' find cell to paste to
Set rPaste = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=True, SearchFormat:=False)
' check we found it
If Not rPaste Is Nothing Then
rPaste.Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False
End If
End If
' now move to next item
Windows("PRE_amended1.xlsx").Activate
Next varItem
End Sub
Bookmarks