Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim iColDateEntered As Integer
'--if you have contiguous column headings in Row 1
' you could do this...
For Each Heading In Range(Cells(1, 1), Cells(1, 1).End(xlToRight))
If Heading.Value = "DateEntered" Then _
iColDateEntered = Heading.Column
Next
'--this is where you set today's date ONLY if it is empty
With Target
If .Row > 1 Then
If IsEmpty(Cells(.Row, iColDateEntered).Value) Then _
Cells(.Row, iColDateEntered).Value = Int(Now)
End If
End With