Although the right click won't let you insert Rows, you can select Insert / Rows from command menu and insert Rows.
Or try the attached sample with following macro. You can modify to suit your needs. Change the column and insert Password if desired. The Insert Button will insert Row below the selected Cell.
Sub Insert()
If Selection.Count = 1 Then
If ActiveCell.Column = 3 Then
ActiveSheet.Unprotect
With ActiveSheet
ActiveCell.Offset(1, 0).Select
Selection.EntireRow.Insert
End With
End If
End If
ActiveSheet.Protect
End Sub
modytrane.
Bookmarks