lifeson
New Member
- Location
- Here or There but mainly Here
Another excel question for the experts
I use this code to create a list of values to use as a rowsource for a combo box:
dim MakeList as Range
Set MakeList = Range(("E1"), Selection.End(xlDown)).SpecialCells(xlCellTypeVisible)
the list is the result of a filtered list using autofilter (hence the xlcelltypeVisible)
How do I make the range "All the visible cells in column E except the first row"?
I use this code to create a list of values to use as a rowsource for a combo box:
dim MakeList as Range
Set MakeList = Range(("E1"), Selection.End(xlDown)).SpecialCells(xlCellTypeVisible)
the list is the result of a filtered list using autofilter (hence the xlcelltypeVisible)
How do I make the range "All the visible cells in column E except the first row"?