Can anyone help me?
I wish for the data displayed in my combo box to be in reverse order.
for example the source rows "B2:B" & rEnd contain this data
1
2
3
4
5
so the Row Source shows data B1:B5
however I wish the data to be displayed in the combobox in a reversed order.
5
4
3
2
1
so I would assume the Row Source should show data B5:B1
but this doesn't change anything in the combobox
can anybody suggest how I can have my data in the combo box displayed in reverse order?
Many thanks
Code:
frmNCREdit.ComboBoxEditNCRNo.RowSource = "B2:B" & rEnd
I wish for the data displayed in my combo box to be in reverse order.
for example the source rows "B2:B" & rEnd contain this data
1
2
3
4
5
so the Row Source shows data B1:B5
however I wish the data to be displayed in the combobox in a reversed order.
5
4
3
2
1
so I would assume the Row Source should show data B5:B1
but this doesn't change anything in the combobox
can anybody suggest how I can have my data in the combo box displayed in reverse order?
Many thanks