Hello: I need a sub to input last month's date into a column of data and then hard code the date. The only solution I came up with is below, but I'm wondering why it's not creating a circular reference. Thank you! I'm sure it has something to do with equivalency, but I'm still new!
Code:
Sub temp()
Dim i As Long
For i = 2 To 4
Cells(i, 2).Formula = "=EOMONTH(TODAY(),-1)"
Cells(i, 2).Value = Cells(i, 2).Value
Next i
End Sub