Hi,
Define the following names in your workbook (under name manager) but change Sheet1 to the name of your worksheet.
Dates =Sheet1!$N:$N
Status =Sheet1!$M:$M
Then, right click on the sheet's tab (at the bottom of the grid) > view code. This will open up the Visual Basic Editor. Paste in the below code and you're done. If "IC" is in the Status column then the code will add the date to the Dates column; if anything else has been put in the Status column then the code will clear the Dates column.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rngDate As Range
On Error GoTo ErrorHandler
If Not Intersect(Target, Range("Status")) Is Nothing Then
Set rngDate = Intersect(Target.Cells(1).EntireRow, Range("Dates"))
Application.EnableEvents = False
If CStr(Target.Cells(1).Value) = "IC" Then
rngDate.Value = Date
Else
rngDate.ClearContents
End If
End If
ErrorExit:
Application.EnableEvents = True
Exit Sub
ErrorHandler:
Resume ErrorExit
End Sub
Bookmarks