I tried with both relative cell references and absolute references. I tried recording a macro and writing it in VBA.
It is supposed to take raw data and format it. This includes inserting two new columns to add Notes.
I have included a snip of the macro. I know the problem is not with the rest of the macro because the issue happens when I use this alone.
Rows("1:1").Select
Rows("1:1").Select
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
Selection.ClearFormats
Columns("B:B").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("B3").Select
ActiveCell.FormulaR1C1 = "Date"
Range("F3").Select
ActiveCell.FormulaR1C1 = "Notes"