ضع هذا الكود في حدث الورقة
Private Sub Worksheet_Selectionchange(ByVal Target As Range)
R = Cells(Rows.Count, "A").End(xlUp).Row + 1
Application.ScreenUpdating = False
For c = 1 To R
Do
If Cells(c, 1).Value <> "" Then
With Cells(c, 1)
.Offset(0, 1) = Cells(c, 1) + 2: .Offset(0, 2) = Cells(c, 1) + 2: .Offset(0, 3) = Cells(c, 1) + 2
End With: Exit Do: End If
Loop Until Cells(c, 1).Value = ""
Next
Application.ScreenUpdating = True
End Sub