opazzo
Board Regular
- Joined
- Dec 21, 2005
- Messages
- 69
- Office Version
- 365
- Platform
- Windows
Hi there,
I have a formula in A6 that I need to copy down to the last row in column A. Once copied I only need to keep values in all cells except in A6.
Can I use :
Range("A6").AutoFill Destination:=Range("A6:A" & LastRow), Type:=xlFillValues
Instead of my current code :
Range("A6").AutoFill Destination:=Range("A6:A" & LastRow)
Range("A7:AJ" & LastRow) = Range("A7:AJ" & LastRow).Value
If not do you see any other way to improve speed of this code ( I am using the same on many different columns and it takes a good 2 or 3 seconds to execute).
Thanks
I have a formula in A6 that I need to copy down to the last row in column A. Once copied I only need to keep values in all cells except in A6.
Can I use :
Range("A6").AutoFill Destination:=Range("A6:A" & LastRow), Type:=xlFillValues
Instead of my current code :
Range("A6").AutoFill Destination:=Range("A6:A" & LastRow)
Range("A7:AJ" & LastRow) = Range("A7:AJ" & LastRow).Value
If not do you see any other way to improve speed of this code ( I am using the same on many different columns and it takes a good 2 or 3 seconds to execute).
Thanks