Pastespecial of range class failed

ralower2

New Member
Joined
Nov 10, 2017
Messages
1
Hi All,

Can anyone tell me why I am receiving the Pastespecial of range class failed error when trying to paste a copied range of rows from one workbook to another? My code is below:


Sub GetPricingData()


Application.ScreenUpdating = False
Dim StartDate, EndDate As Date


Set MySheet = ThisWorkbook.Worksheets("Daily Pricing")


StartDate = Sheets("Daily Pricing").Range("B1").Value
EndDate = Sheets("Daily Pricing").Range("B2").Value


With MySheet
Lastrow = .Range("A" & .Rows.Count).End(xlUp).Row
LastCol = .Range("A" & .Columns.Count).End(xlToLeft).Column
Set MyRange = .Range(.Cells(5, 1), .Cells(Lastrow, LastCol))
End With


With MySheet
.AutoFilterMode = False
If .FilterMode = True Then
.ShowAllData
End If
End With


With MyRange
.AutoFilter Field:=1, Criteria1:=">=" & StartDate, Operator:=xlAnd, Criteria2:="<=" & EndDate
End With


ChDir "H:\Risk and Reporting"
Workbooks.Open Filename:="H:\Risk and Reporting\Pricing Main.xlsm"
Sheets("All Pricing").Select




With ActiveSheet
Lastrow2 = .Range("E" & .Rows.Count).End(xlUp).Row
LastCol2 = .Range("E" & .Columns.Count).End(xlToLeft).Column
Set MyRange2 = .Range(.Cells(5, 5), .Cells(Lastrow2, LastCol2))
End With


With ActiveSheet
.AutoFilterMode = False
If .FilterMode = True Then
.ShowAllData
End If
End With


With MyRange2
.AutoFilter Field:=5, Criteria1:=">=" & StartDate, Operator:=xlAnd, Criteria2:="<=" & EndDate
Range("E6:BBW" & Lastrow2).SpecialCells(xlCellTypeVisible).Copy
End With


Worksheets("All Pricing").AutoFilterMode = False
ActiveWindow.Close


Windows("Pricing.xlsm").Activate
Sheets("Daily Pricing").Select


Range("A6:BBW" & Lastrow).SpecialCells(xlCellTypeVisible).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False




End Sub

Appreciate any help provided!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,214,545
Messages
6,120,132
Members
448,947
Latest member
test111

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top