- Katılım
- 22 Mayıs 2009
- Mesajlar
- 1,017
- Excel Vers. ve Dili
- Office 2003
Private Sub Userform_Initialize()
Dim i As Long
ComboBox1.Clear
For i = 3 To Range("c65536").End(xlUp).Row
If WorksheetFunction.CountIf(Range("c3:c" & i), Range("c" & i).Value) = 1 Then
ComboBox1.AddItem Cells(i, "c").Value
End If
Next i
End Sub
Üstadlarım;
Yukarıda ki kod ile sadece Combobox1' e C sütununu alabiliyorum. Bu koda
Combobox2 ye D sütununu
Combobox3/e de F sütununu eklemek istiyorum. Rica etsem yardımcı olabilir misiniz
Dim i As Long
ComboBox1.Clear
For i = 3 To Range("c65536").End(xlUp).Row
If WorksheetFunction.CountIf(Range("c3:c" & i), Range("c" & i).Value) = 1 Then
ComboBox1.AddItem Cells(i, "c").Value
End If
Next i
End Sub
Üstadlarım;
Yukarıda ki kod ile sadece Combobox1' e C sütununu alabiliyorum. Bu koda
Combobox2 ye D sütununu
Combobox3/e de F sütununu eklemek istiyorum. Rica etsem yardımcı olabilir misiniz