All.
By attaching the following code to a button, I'm trying to copy down the formula to the next line. This would bve done on a daily basis.
c3:d3 to c4:d4 one day
c4:d4 to c5:d5 the next and so on.
Sub()
Sheets("P&L Var - MTD Summary").Select
Range("C3
3").Select
Selection.Copy
Range("C4").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Calculate
End Sub
What do I need to add ?
Thanx.
By attaching the following code to a button, I'm trying to copy down the formula to the next line. This would bve done on a daily basis.
c3:d3 to c4:d4 one day
c4:d4 to c5:d5 the next and so on.
Sub()
Sheets("P&L Var - MTD Summary").Select
Range("C3
Selection.Copy
Range("C4").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Calculate
End Sub
What do I need to add ?
Thanx.