Logically, this looks like it should work:
Option Explicit
Sub test()
Dim fNAME As String, wbDEST As Workbook
Dim LastRow As Long, LastCol, r As Long, iCol As Long
Application.ScreenUpdating = False
Application.DisplayAlerts = False
With ActiveSheet
.Range("C:C").Insert Shift:=xlToRight
LastRow = .Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row
LastCol = .Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Column
.Range("C2:C" & LastRow).FormulaR1C1 = _
"=VLOOKUP(RC[-1],'[Daily Hold Transfer Report.xls]Sheet1'!C2,1,FALSE)"
On Error Resume Next
.Range("A2", .Cells(LastRow, LastCol)).SpecialCells(xlCellTypeFormulas, 16).EntireRow.Delete
On Error GoTo 0
LastRow = .Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row
.Range("A1:A" & LastRow).EntireRow.Copy
End With
fNAME = "S:\Small Business\Previous Hold Transfer Report.XLS"
Set wbDEST = Workbooks.Open(fNAME)
Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteAll 'or xlPasteValues
Range("A:J").Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlNo, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
Rows("1:1").Insert Shift:=xlDown
wbDEST.Close True
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub
Bookmarks