I really need your help with this as I believe that there is more to this puzzling problem. I am using a basic for loop to grab all of my column values from column A and insert them into my user form combobox (floors).
How can the function below be amended such that it only add the unqiue values 1 time as opposed to just duplicating the column value each and everytime:
Sub tester()
With Sheets("Office Spaces")
lRow = Cells(Rows.Count, 1).End(xlUp).row
For i = 3 To lRow
If Not IsEmpty(.Cells(i, 1).Value) Then
Me.floor.AddItem .Cells(i, 1).Value
End If
Next i
End With
End Sub