I am trying to add names to the combo Box. I want to see the list of recently entered values first. For example Names John Sam Smith Will
I want to see the list in combo Box drop down as Will Smith Sam John
I tried using range function to set a range and then traverse the cells in the range and adding them to the comboBox.
Function Rangeform() Set Rangeform = ActiveSheet.[a1:a50000] End Function
For each cell in Rangeform ComboBox8.AddItem cell Next
Is there a way to set the range from last used row to the first and then looping backwards?