Here is a macro solution. There are some potential problems I foresee using it. Nothing will happen if they don't put a Y in those columns.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("B:B,E:E,H:H")) Is Nothing Then
If UCase(Target.Value) = "Y" Then
Application.EnableEvents = False
Target.Offset(, 1).Value = Date
With Target.Offset(, 2)
.Value = Now
.NumberFormat = "hh:mm"
End With
Application.EnableEvents = True
End If
ElseIf Not Intersect(Target, Range("C:C,D:D,F:F,G:G,I:I,J:J")) Is Nothing Then
With Application
.EnableEvents = False
.Undo
.EnableEvents = True
End With
MsgBox "That cell cannot be edited"
End If
End Sub
Bookmarks