Copy row and paste formulas

Shadkng

Active Member
Joined
Oct 11, 2018
Messages
365
I would like to modify the code below to paste formulas only. Also in row 27 I have data only thought column N, so should it be specific to the range of data? Thanks

Sub CLUTCH_BUILD_COPYROW()
Sheets("CLUTCH BUILD").Activate
Range("27:27").Copy Range("28:" & Range("A1").Value)
Sheets("FINALORDER").Activate
Range("B15").Select
End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi,

You could test following macro

Code:
Sub CLUTCH_BUILD_COPYROW()
  Sheets("CLUTCH BUILD").Range("A27:N27").Copy
  Sheets("CLUTCH BUILD").Range("A28:N" & 28 + Range("A1").Value -1).PasteSpecial xlPasteFormulas
  Application.CutCopyMode = False
  Application.Goto Sheets("FINALORDER").Range("B15")
End Sub

Hope this will help
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,864
Messages
6,121,986
Members
449,058
Latest member
oculus

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