Se possibile avrei bisogno di queste due modifiche:
L'aggiunta di 2 righe anzichè 1
La righe che vengono aggiunte dovrebbero essere completamente pulite.
- Codice: Seleziona tutto
Private Sub Worksheet_Change(ByVal Target As Range)
CheckArea = "C1:C150"
If Not Application.Intersect(ActiveCell, Range(CheckArea)) Is Nothing Then
If (Selection.Rows.Count + Selection.Columns.Count) > 2 Then Exit Sub
Application.EnableEvents = False
If Target <> "" Then
Riga = Target.Row + 1
Rows(Riga).Insert Shift:=xlDown
End If
End If
Application.EnableEvents = True
End Sub
GRAZIE MILLE