A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Re: more
'---
Sub AddStartDate()
If VBA.Len(ThisWorkbook.Worksheets(1).Range("G2").Value) > 2 Then
Else
ThisWorkbook.Worksheets(1).Unprotect Password:="Sludge"
ThisWorkbook.Worksheets(1).Range("G2").Value = "'" & _
VBA.Format(VBA.Date & " " & Time, "MMMM dd yyyy hh:mm am/pm")
ThisWorkbook.Worksheets(1).Protect Password:="Sludge"
End If
End Sub
'---
Replace Sludge with your password.
'---
Nothing Left to Lose