copy and paste - what is wrong?

earp_

Active Member
Joined
Apr 30, 2008
Messages
305
Hi,
i'm trying to copy from cell F to cell N from line 11 to down.
from cells F11 to N11 I have some datas that i get with formulas.
So I want to update the rest of the cells copying the formulas from F11 to N11 down to the columns.
I wrote this
Worksheets("pdf").Range("F11:N11").Copy
Worksheets("pdf").Range("F65536:N65536").End(xlUp).Offset(1, 0).PasteSpecial xlValues
Application.CutCopyMode = False
but it copies just the value of F11:N11 and not the formulas.
Any suggest?
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try:

Code:
Worksheets("pdf").Range("F11:N11").Copy Destination:=Worksheets("pdf").Range("F65536:N65536").End(xlUp).Offset(1, 0)
Application.CutCopyMode = False

or

Code:
Worksheets("pdf").Range("F11:N11").Copy
Worksheets("pdf").Range("F65536:N65536").End(xlUp).Offset(1, 0).PasteSpecial xlPasteFormulas
Application.CutCopyMode = False
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

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