sharky12345
Well-known Member
- Joined
- Aug 5, 2010
- Messages
- 3,421
- Office Version
- 2016
- Platform
- Windows
I have a range of numeric values currently between N2:N13 and I need those loaded into a Listbox using this;
The issue is that it is only loading the first value, from N2 and nothing else.
I'm using the same method of another column which has values consisting of text and numeric, like this;
that one works fine, so I don't understand why the first one doesn't work - is it something to do with the fact that they are numeric only?
Code:
ListBox3.RowSource = Range(Sheet5.Range("N2"), Sheet5.Range("N65536").End(xlUp)).Address(, , , True)
The issue is that it is only loading the first value, from N2 and nothing else.
I'm using the same method of another column which has values consisting of text and numeric, like this;
Code:
ListBox2.RowSource = Range(Sheet5.Range("L2"), Sheet5.Range("L65536").End(xlUp)).Address(, , , True)
that one works fine, so I don't understand why the first one doesn't work - is it something to do with the fact that they are numeric only?