I have moved beyond the method of range class failed problem and have now encountered a PasteSpecial Method of Range Class Failed error now. I think what is happening is that by the time I get my master workbook opened and try to paste the copied data, the copied data isn't there to paste anymore. I think I may need to re-write the code somehow, but I am not sure how to write it. Can anyone take a look and point me in the right direction? And I apologize for the sloppy coding, still very green with this and I am learning. I have highlighted in red where I get the error message.
Sub Update_Names()
'
' Update_Names Macro
' Macro recorded 5/18/2010 by ********
' Edited 5/13/13 by ******** Added code to pull data from SQL
' Edited 7/8/13 by ******** Added code to open master workbook and insert data
' 'Inserting Columns************************************
Sheets("Batch").Select
Rows("2:2").Select
Selection.Insert Shift:=xlDown
'Range("A2:C2").Select
Selection.Interior.ColorIndex = 2
With Selection.Font
.Name = "Arial"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
Sheets("Chem-Prep").Select
Rows("2:2").Select
Selection.Insert Shift:=xlDown
Selection.Interior.ColorIndex = 2
With Selection.Font
.Name = "Arial"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
Sheets("Furnace").Select
Rows("2:3").Select
Selection.Insert Shift:=xlDown
Selection.Interior.ColorIndex = 2
With Selection.Font
.Name = "Arial"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
Sheets("Pack-Out").Select
Rows("2:4").Select
Selection.Insert Shift:=xlDown
Selection.Interior.ColorIndex = 2
With Selection.Font
.Name = "Arial"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
Sheets("Quality Lab").Select
Rows("2:2").Select
Selection.Insert Shift:=xlDown
Selection.Interior.ColorIndex = 2
With Selection.Font
.Name = "Arial"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
'Copying data into the sliving tab**************************
If Range("A2").Value <> vbNullString Then
Rows("2:17").Insert Shift:=x1Down
Else
End If
Sheets("Data Entry").Select
Range("F75:F82").Select
Selection.Copy
Sheets("Forming").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Data Entry").Select
Range("F85:F92").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Forming").Select
Range("A10").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Data Entry").Select
Range("D95:G95").Select
Selection.Copy
Sheets("Chem-Prep").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Data Entry").Select
Range("D98:G98").Select
Selection.Copy
Sheets("Quality Lab").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Data Entry").Select
Range("D101:G101").Select
Selection.Copy
Sheets("Batch").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Data Entry").Select
Range("D104:H107").Select
Selection.Copy
Sheets("Pack-Out").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B15").Select
Sheets("Data Entry").Select
Range("D109:H110").Select
Selection.Copy
Sheets("Furnace").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("C7").Select
Sheets("Data Entry").Select
Range("D3").Select
'Getting data from SQL server**********
Dim strSQL As String
Dim V_Beg_Date As String
Dim V_End_Date As String
V_Beg_Date = Sheets("Data Entry").Range("D3")
V_End_Date = Sheets("Data Entry").Range("D4")
Sheets("Forming").Select
Range("B1").Select
strSQL = "SELECT TIMESTAMP, CHOPPER, SHIFT_CODE 'Shift', OE , "
strSQL = strSQL & "CE, BBOH, HTB, "
strSQL = strSQL & "CHOP_CHECK_PCT 'Chop Check %'"
strSQL = strSQL & "From dbo.SHIFT_SUMM_CHPRDATA2 "
strSQL = strSQL & "Where ""timestamp"" >= '" & V_Beg_Date & "' "
strSQL = strSQL & "and ""timestamp"" < '" & V_End_Date & "'"
server = "ODBC;DSN=******"
With ActiveSheet.QueryTables.Add(server, _
Destination:=Range("B1"))
.Sql = (strSQL)
.FieldNames = True
.RefreshStyle = xlInsertDeleteCells
.RefreshStyle = x1OverWriteCells
.RowNumbers = False
.FillAdjacentFormulas = False
.RefreshOnFileOpen = False
.HasAutoFormat = True
.BackgroundQuery = True
.TablesOnlyFromHTML = True
.Refresh BackgroundQuery:=False
.SavePassword = True
.SaveData = True
End With
Sheets("Forming").Select
Range("A2:I17").Select
Selection.Copy
ActiveWorkbook.Save
Workbooks.Open Filename:= _
"P:\Common\Support Team\Team Leaders\A Team\Production Scheduling.xls"
Sheets("Forming").Select
If Range("A2").Value <> vbNullString Then
Rows("2:17").Insert Shift:=x1Down
Else
End If
Sheets("Forming").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveWorkbook.Save
' ActiveWorkbook.SaveAs Filename:= _
' "P:\Common\Support Team\Team Leaders\A Team\Production Scheduling.xls", _
FileFormat:=xlExcel12, CreateBackup:=False
ActiveWindow.Close
Bookmarks