Dropdown List from values in a Cell Range
For Each YourCell in YourRange
If ActiveCell.Value < Empty Then
YourCombo.AddItem ActiveCell.Value
End If
Next
"DrKacso" schreef in bericht
...
How do I get a list of only the nonblank values from a cell range?
|