A
alienscript
Hi Colo,
I tried to run your code to copy formula in cell K2 (I place the cursor
on cell K2) down to last cell in column K, it doesn't copy down the
formula.
Is there anything missing from the code ?
Please help and thanks very much!
Sub Cell2CopyToEnd()
Dim col As Long
col = ActiveCell.column
Range(Cells(2, col), Cells(Rows.Count, col).End(xlUp)).Formula = _
Cells(2, col).Formula
End Sub
I tried to run your code to copy formula in cell K2 (I place the cursor
on cell K2) down to last cell in column K, it doesn't copy down the
formula.
Is there anything missing from the code ?
Please help and thanks very much!
Sub Cell2CopyToEnd()
Dim col As Long
col = ActiveCell.column
Range(Cells(2, col), Cells(Rows.Count, col).End(xlUp)).Formula = _
Cells(2, col).Formula
End Sub