السلام عليكم
قمت بالتعديل على كود الاستاذ ابو حنين لإضافة رسائل تنبيهية واستخدمت مربع الأدخال للبحث عن الأسم بدل الخلية الصفراء
جرب الكود واخبرني عن النتيجة
Private Sub CommandButton2_Click()
Dim Last As Long, i As Long, Lr As Long, ii As Long
MySrchVal = Application.InputBox("بحث", "حذف", "ضع أسم البحث هنا")
T = Application.CountIf(Range("C2:C" & Cells(Rows.Count, "A").End(xlUp).Row), MySrchVal)
If T = 0 Then MsgBox "لأيوجد أسم مشابه": Exit Sub Else MyMsg = MsgBox(" هل ترغب بالحذف علماً بأنه لا يمكن إسترجاع البيانات بعد الحذف", 4, "تم العثور على الأسم")
If MyMsg = 6 Then
For i = 2 To Cells(Rows.Count, "A").End(xlUp).Row
If Cells(i, 3) = MySrchVal Then Range(Cells(i, 1), Cells(i, 4)).Delete Shift:=xlUp: Exit For
Next
With Sheets("Sheet2")
For ii = 2 To .Cells(.Rows.Count, "A").End(xlUp).Row
If .Cells(ii, 2) = MySrchVal Then .Range(.Cells(ii, 1), .Cells(i, 3)).Delete Shift:=xlUp: Exit For
Next
End With
End If
End Sub