Hello. I have a sheet with Dates going down column A. What I am trying to do is have todays date populate the next empty cell going down column A once the workbook is open. If todays date is present then do nothing.
I really dont know what I am doing. But I am trying. Thanks in advance.![]()
Private Sub Book_Date() ActiveWorkbook.Sheets("MySheet").Activate Range("A21").Select Do If IsEmpty(ActiveCell) = False Then ActiveCell.Offset(1, 0).Select End If Loop Until IsEmpty(ActiveCell) = True If Range("A21") = "" Then Range("A21") = Now End If Range("A21").Select End Sub
Bookmarks