Hi Everybody,
I need to copy down the formular from column C&D from the row above, every row is one week, so the last row is week 52.
The code I have it copy the exact formular from the cell, it is not copy DOWN the formular.
Any help will be appreciate it.
Thanks.
Sub copyFormulaString()
Dim LastRow As Long
Dim m_copy As String
m_copy = Range("M1").Value
LastRow = Sheets("Sheet1").Cells(53, "c").End(xlUp).Row
stRow = Sheets("Sheet1").Range("D" & Rows.Count).End(xlUp).Row
Sheets("Sheet1").Select
Range(m_copy).Formula = Range("C3").Formula
Bookmarks