aşağıdaki kodlarla comboboxa listelediğim verileri alfabetik şekilde sıralayabilirmiyim?
For A = 1 To Cells(65535, 2).End(xlUp).Row
If WorksheetFunction.CountIf(Range("B1:B" & A), Cells(A, 2).Value) = 1 Then
UserForm1.ComboBox1.AddItem Cells(A, 2).Value
End If
Next A
For A = 1 To Cells(65535, 2).End(xlUp).Row
If WorksheetFunction.CountIf(Range("B1:B" & A), Cells(A, 2).Value) = 1 Then
UserForm1.ComboBox1.AddItem Cells(A, 2).Value
End If
Next A