sirkülasyon
Altın Üye
- Katılım
- 10 Temmuz 2012
- Mesajlar
- 2,532
- Excel Vers. ve Dili
- 2021 LTSC TR
- Altın Üyelik Bitiş Tarihi
- 18-06-2026
Kod:
Set Ar = Sheets("ARŞİV")
Application.EnableEvents = False
ComboBox1.Clear
For a = 2 To Ar.Cells(Rows.Count, "B").End(3).Row
If WorksheetFunction.CountIf(Ar.Range("B2:B" & a), Ar.Cells(a, "B")) = 1 Then
ComboBox1.AddItem Ar.Cells(a, "B")
End If
Next
Application.EnableEvents = True
If ComboBox1.ListCount > 0 Then ComboBox1.Value = ComboBox1.List(0)