Copy format only from cell above

lapta301

Well-known Member
Joined
Nov 12, 2004
Messages
1,001
Office Version
  1. 365
Platform
  1. Windows
Dear All

Could I trouble someone to knock up a macro that will copy all of the formatting from the cell immediately above, a bit like Ctrl D.

I did have a bash but somehow it didn't copy the bold format.

As ever my grateful thanks for any help that you can provide
 

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
Just use Paste Special. Give this a go:

Code:
With Selection
    .Offset(-1, 0).Copy
    .PasteSpecial Paste:=xlPasteFormats
End With
 
Upvote 0
Works a treat, thank you for taking the time to help
 
Upvote 0
Just use Paste Special. Give this a go:

Code:
With Selection
    .Offset(-1, 0).Copy
    .PasteSpecial Paste:=xlPasteFormats
End With

Sorry for being N00B where does this should be pasted? How do I get the code to work?
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,184
Members
448,949
Latest member
keycalinc

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