Try This.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Application.EnableEvents = False
If Not Intersect(Target, Range("D:D")) Is Nothing Then
Target(1, 2).Value = "Check Status"
Target(1, 3).ClearContents
Target(1, 2).select
With Selection.Font
.Name = "Calibri"
.FontStyle = "Bold"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.Color = 255
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
End If
If Not Intersect(Target, Range("F:F")) Is Nothing And Target.Cells.Value = "Ok" Then
Target(1, 0).ClearContents
Target(1, 1).ClearContents
End If
Application.EnableEvents = True
End Sub
Bookmarks