اذهب الي المحتوي
أوفيسنا

الردود الموصى بها

قام بنشر

السلام عليكم تم الوصول الى الحل بعد عدة محاولات قمت بها والكود النهائي هل يحتاج إلى الضبط ام لا تحياتي لكم  

Private Sub CommandButton5_Click()
Dim I As Integer, counter As Integer
    WSLR = WS.Cells(Rows.Count, 2).End(xlUp).Row + 1
  With Me.ListBox1
    On Error Resume Next
    For Each C In WS.Range("b2:b" & WSLR)
            I = 1
            For counter = 1 To C.Rows.Count
          If C.Cells(I) = TextBox1.Value Then
          C.Cells(I).EntireRow.Delete
          Else
          I = I - 1
          End If
   Next
  Next C
 End With
       MsgBox "تم حذف الاسم"
End Sub
 
  • أفضل إجابة
قام بنشر

حسب فهمي للمطلوب يمكنك استعمال هذا الكود

Private Sub CommandButton5_Click()
If ActiveSheet.Name <> "data" Then
Dim wslr As Integer, counter As Integer, ws As Worksheet
Set ws = ThisWorkbook.Worksheets("data")
wslr = ws.Cells(Rows.Count, 1).End(xlUp).Row
    For counter = 1 To wslr
      If ws.Cells(counter, 2) = TextBox1.Value Then
      ws.Cells(counter, 2).EntireRow.Delete
      counter = counter - 1
      End If
    Next
MsgBox "تم حذف الاسم"
End If
End Sub

 

  • Like 1
  • Thanks 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information