Hi Paul,
Thank you for the help. Your recommendation has worked to an extent, but I still come up with errors. Below is a piece of the code that is causing the most problems. The two lines that are commented out (with the ' mark) are what are giving me the problems.
I appreciate any help you can provide. Thank you.
Dim LastRow As Long
LastRow = Cells.Find(What:="*", _
SearchDirection:=xlPrevious, _
SearchOrder:=xlByRows).Row
Sheets("Sheet1").Range("A1:K12000").Select
Selection.Copy
' Sheets("Sheet2").Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
' Sheets("Sheet2").Range.Cells(1, 1).Resize(Columns(2).Find("Item", , xlFormulas, xlPart).Row - 1).EntireRow.Delete
LastRow2 = Cells.Find(What:="*", _
SearchDirection:=xlPrevious, _
SearchOrder:=xlByRows).Row
Sheets("Sheet2").Range("A2:K" & LastRow2).Select
Selection.Copy
Workbooks.Open Filename:="N:\Supply_Chain\Demand_Plan\ASCP\Master Grid_Macro.xlsm"
Windows("Master Grid_Macro").Activate
Sheets("ASCP_Raw").Activate
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues
Bookmarks