Same rules apply pretty much... but you've still not said what you want to go into your newly inserted rows in terms of formulae etc... so what's inserted below is merely an example to show how you can add them... in this case you should find A80:C80 contain 1 and A78:C79 contain 0
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) <> "A5" Then Exit Sub
If Len(Target.Value) > 0 Then
Rows("78:80").Insert
With Range("A78:C80")
.Formula = "=IF(ROW()>79,1,0)"
.Font.Bold = True
End With
End If
End Sub
Bookmarks