Is there a way to use the format painter in VBA? I mean, basically
copying all the formatting properties of one cell into another cell?
Thank you in advance!

Signature
Angelus
Gary Keramidas - 23 Jan 2006 05:29 GMT
maybe something like this
Sub test()
Worksheets("sheet1").Range("b3").Copy
Worksheets("sheet2").Range("g1:g5").PasteSpecial xlFormats
End Sub

Signature
Gary
> Is there a way to use the format painter in VBA? I mean, basically
> copying all the formatting properties of one cell into another cell?
>
> Thank you in advance!