A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Try this macro. It will run when the column E is updated. And when column is major or minor, it will pop up a windows to add a comments
========================================
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rng As Range
Dim cell As Range
Dim comment As String
Set rng = Intersect(Target, Range("E:E"))
If Not rng Is Nothing Then
For Each cell In rng
If cell.Offset(0, 4).Value = "Major Disruption" Or cell.Offset(0, 4).Value = "Minor Disruption" Then
comment = InputBox("Please add a comment:")
cell.Offset(0, 5).Value = comment
End If
Next cell
End If
End Sub