Hello royUK,
Good question. My sheet is an anime list, keeping track of all shows I watch.
On my first sheet I have multiple tables, like: "Watching", "Completed", "Planning to Watch", etc.
I have a code running which moves the rows to their corresponding table depending on the number of episodes I enter.
I didn't have this before, I used to have it in one table. But then I got the code for moving the rows, as said earlier.
When I used just the one table, I had a Named Range filling the ListBox, as such:
Me.ListBox1.RowSource = "NamedRange"
That still works, but now it shows the header for the tables below the first one as well...
Example:
Table1:
ColumnA
HEADER
Value1
Value2
Value3
Table2:
ColumnA
HEADER
Value4
Value5
Value6
The ListBox then shows:
Value1
Value2
Value3
HEADER
Value4
Value5
Value6
I don't want the headers to be in the ListBox. So that's why I wondered if it's possible to have more than one table as a source for a ListBox.
Kind regards,
Marco
Bookmarks