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

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

  • أفضل إجابة
قام بنشر

بعد اذن الاخ مداد 

تم تغيير اسم الشيت الى اللفة الاجنبية  "salim" (كما اعمل دائماً مع الاكواد لحسن عمل الماكرو من حيث النسخ واللصق)

هذا الكود البسيط

Option Explicit

Sub get_Data()
Dim S As Worksheet
Dim x%: x = 4
Dim dic As Object
Dim ky

Set S = Worksheets("salim")
S.Range("d4").CurrentRegion.ClearContents
Set dic = CreateObject("Scripting.Dictionary")
 
 Do Until Cells(x, 1) = vbNullString
 If Not dic.exists(S.Cells(x, 1).Value) Then
  dic.Add (S.Cells(x, 1).Value), S.Cells(x, 1).Offset(, 1)
 End If
 x = x + 1
 Loop
 '========================
With S.Range("d4").Resize(dic.Count)
  .Offset(, 1) = _
      Application.Transpose(dic.items)
  .Value = _
       Application.Transpose(dic.keys)
  .Offset(dic.Count).Resize(dic.Count) = _
       Application.Transpose(dic.keys)
     For Each ky In dic.keys
       dic(ky) = dic(ky) + 1
     Next
  
  .Offset(dic.Count, 1) = _
  Application.Transpose(dic.items)
 End With
 Set dic = Nothing: Set S = Nothing
End Sub

الملف مرفق

 

Conditional_Duplicate.xlsm

  • Like 4
  • Thanks 2
قام بنشر

استاذ سليم شكرا جزيلا وربنا يبارك فيكم  هذا هو المطلوب بالضبط ولكن المطلوب معادلة بدل الكود بعد اذنك  

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