Hi there,
I am looking for some help with a forecasting model.
In order to update the model I need to offset and then copy data however I am struggling to do this.
My code at the moment:
Sheets("Updated Forecast").Select
Range("C5").Select
Do While ActiveCell.Value <> Empty
ActiveCell.Value = ActiveCell.Value + intAddNum + 1
ActiveCell.Offset(5, 0).Select
Loop
Application.CutCopyMode = False
Selection.Copy
Sheets("Home").Select
Range("I29").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Any help would be much appreciated.
Thanks
Bookmarks