I've been trying to generate a list of dates to use in a timesheet,
with a loop in vba. What has been happening is that the loop has
actually been changing the date on my pc's clock.
I had been using...
For i = 1 To 385
Range("A" & i).Value = Date
Date = Date + 1
Next i
Is this perhaps the "system" date? If so, how would I go about doing
a loop just on the timesheet?