Copying Formats using VBA (hopefully w/o PasteSpecial cmd)

buffalo

Board Regular
Joined
Jun 19, 2003
Messages
183
Hi

I have to copy from SrcSheet to DestSheet the data in A1:AA400

Set SourceRange = Src.Range("A1:AA400")
Set DestRange = DestSheet.Range(A1)
Set DestRange = DestRange.Resize(SourceRange.Rows.Count, SourceRange.Columns.Count)
DestRange.Value = SourceRange.Value

...How do I copy the formats w/o explicitly using PasteSpecial type command? Something like SourceRange.Format etc??
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
If you only want to copy the formats there's not really another way other than using PasteSpecial.

You would either need to do a straight copy, then 2 paste specials - one for values and one for formats.

Or with the existing code, which is basically doing a paste special values, just do the paste special for the formatting.
 
Upvote 0

Forum statistics

Threads
1,214,923
Messages
6,122,286
Members
449,076
Latest member
kenyanscott

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