Hello,
how do I modify this code so that it inserts new date in next available cell?
For example, I add todays date in cell AS23, tomorrow I add new date and it will appear on AT23 and so on
how do I modify this code so that it inserts new date in next available cell?
Code:
Sub SetDate()
'Set cell D2 to the current date
ActiveSheet.Range("AS23").Value = Date
End Sub
For example, I add todays date in cell AS23, tomorrow I add new date and it will appear on AT23 and so on