I am working on creating a log that will automatically populate a timestamp into Cell D, when data is initially entered into Cell C. Unfortunately I have hit a wall.
Seems simple enough. Am I missing something? Just check to ensure the cell is blank before you update it.
With rCell.Offset(0, 1) If .Value <> "" Then .Value = Now .NumberFormat = "hh:mm:ss AM/PM mm/dd/yyyy" End If End With