Simplifying VBA code
Hi All
The following code works fine, but for my information and education, is
there a simpler way to write it ?
range("F12").Copy
range("F13:F" & lrow - 1).PasteSpecial (xlPasteFormats)
range("H12").Copy
range("H13:H" & lrow - 1).PasteSpecial (xlPasteFormats)
range("I12").Copy
range("I13:I" & lrow - 1).PasteSpecial (xlPasteFormats)
Thanks for any assistance
Michael M
|