Posting Values and Formats with VBA

999HelpPlease

New Member
Joined
Jul 16, 2014
Messages
35
I need to take the formats from one sheet and copy to another sheet and the values of the original sheet and post to a separate sheet.

All my info is on sheet 2. I need to post the formats to Sheet 1 and the values to Sheet 3.

This is what I have but it doesn't work.

Worksheets("Sheet2").Activate
Range("A1:d9").Select
Selection.Copy
Worksheets("Sheet1").Activate
ActiveSheet.PasteSpecial xlPasteFormats
Worksheets("Sheet2").Activate
Range("A1:d9").Select
Selection.Copy
Worksheets("Sheet3").Activate
Selection.PasteSpecial Paste:=xlPasteValues



End Sub


Is there an easier way to write this code?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
try:

Code:
Worksheets("Sheet2").Range("A1:d9").Copy
 Worksheets("Sheet1").Range("A1:D9").PasteSpecial xlPasteFormats
 Worksheets("Sheet3").Range("A1:D9").PasteSpecial xlPasteValues
 
Upvote 0

Forum statistics

Threads
1,213,565
Messages
6,114,338
Members
448,570
Latest member
rik81h

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