Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Application.EnableEvents = False
With Target
.EntireRow.Insert
.Offset(-1).Value = "SUBTOTAL"
.Offset(-1).Font.Bold = True
End With
Application.EnableEvents = True
End If
End Sub