PasteSpecial method of Range class failed

rmCalgary

New Member
Joined
Jun 27, 2016
Messages
4
I have tried the suggestions in quite a few different threads to solve the problem that I am encountering. I am trying to copy a Range of cells in a column on one sheet and transpose paste them on another sheet.

Code:
Sub MoveWell(TCDesc, OnStream, WellCnt)
    Sheets(TCDesc).Select
    Range("B71:B799").Copy
    Sheets("Gas_Prod").Select
    Range("A18").Offset(WellCnt + 2, OnStream + 1).Select
    Selection.PasteSpecial Paste:=x1Values, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
End Sub
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Does this work?
Code:
Sub MoveWell(TCDesc, OnStream, WellCnt)
    Sheets(TCDesc).Range("B71:B799").Copy
    Sheets("Gas_Prod").Range("A18").Offset(WellCnt + 2, OnStream + 1).PasteSpecial Paste:=x1Values
End Sub
If it doesn't is 'Gas_Prod' protected? Also, what are the values of WellCnt and OnStream when the code fails?
 
Upvote 0
No that didn't work either.

No 'Gas_Prod' is not protected. An the values of Wellcnt = 1 and OnStream = 4 at time of the failure. but it does say x1Values = empty??
 
Upvote 0
It should be xlValues not x1Values
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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