I'm trying to create a VBA Macro that copies a Range of cells, paste them in the same Sheet in the first available row and then clear the content of the copied cells, leaving the formulas.
So far I've come up with the Copy/Paste but not the clear content.
Range("A1:L5").Copy
Range("A1").End(xlDown).Offset(6).EntireRow.Insert
Range("B2:B4").ClearContents
and then clear the content of the copied cells, **leaving the formulas**Can you clarify this part? - Siddharth Rout