الشيت لايتقبل كودين بنفس الاسم ماالحل ارجو المساعدة في الدمج او طريقة اخرى
الكود الاول
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
Dim R As Integer
If Not Intersect(Target.Cells(1, 1), Union(Range("D2:D10000"), Range("o2:o10000"))) Is Nothing Then
R = Target.Row
If Cells(R, "D").Value <> "" Then
Cells(R, "0").Value = R + 4999
Cells(R, "E").Value = WorksheetFunction.VLookup(Cells(R, "D"), [TUNNEL6], 2, 0)
Cells(R, "F").Value = WorksheetFunction.VLookup(Cells(R, "D"), [TUNNEL6], 3, 0)
Cells(R, "G").Value = WorksheetFunction.VLookup(Cells(R, "D"), [TUNNEL6], 4, 0)
Else
Union(Cells(R, "0"), Cells(R, "0")).ClearContents
End If
End If
On Error GoTo 0
End Sub
الكود الثاني
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
Dim R As Integer
If Not Intersect(Target.Cells(1, 1), Union(Range("c2:c10000"), Range("o2:o10000"))) Is Nothing Then
R = Target.Row
If Cells(R, "c").Value <> "" Then
Cells(R, "0").Value = R + 4999
Cells(R, "l").Value = WorksheetFunction.VLookup(Cells(R, "c"), [TUNNEL3], 2, 0)
Else
Union(Cells(R, "0"), Cells(R, "0")).ClearContents
End If
End If
On Error GoTo 0
End Sub
الحل لوسمحتوا