السلام عليكم
ماهو التنسيق الذى تريده للسطر الجديد
تعديل بسيط يقوم برسم الحدود للسطر الجديد
Private Sub Worksheet_Change(ByVal Target As Range)
TR = Target.Row
If Target.Column = 8 Then
Rows(TR + 1).Insert
For C = 2 To 8
Cells(TR, C).Interior.ColorIndex = 36
Cells(TR, C).Font.ColorIndex = 1
Cells(TR, C).Borders.Color = 1
Next
Cells(TR + 1, 2).Select
End If
End Sub