Shamin has attended:
Excel VBA Intro Intermediate course
Excel VBA Advanced course
VBA Copy cell format to destination cell
How can you copy cell format to destination cell?
RE: VBA Copy cell format to destination cell
Hi Shamin
Thanks for your question
The quickest method would be to invoke the paste special method. While this does involve using the select method, which is not ideal, it is still probably the optimum technique in this instance.
The following is an example
Range("B3").Select
Selection.Copy
Range("F3").Select
Selection.PasteSpecial Paste:=xlPasteFormats
Regards
Stephen