Greetings ,,
with this code, how can I make my combobox1 starts with the last record ??
with this code, how can I make my combobox1 starts with the last record ??
Code:
Private Sub UserForm_Initialize()Dim cell As RangeWith Worksheets("Sheet1")For Each cell In .Range("C2:C" & .Cells(Rows.Count, 3).End(xlUp).Row)If Not IsEmpty(cell) Then ComboBox1.AddItem cell.ValueNext cellEnd With </pre>[COLOR=#333333]
[/COLOR]