I have Excel 2016. I have three worksheets, each worksheet contains a table (lets call them tab1, tab2, tab3).
Each table contains a column called servId.
In the 4th worksheet I want to create a list of all the servId entries from all three tables.
e.g. if tab1 contains entries 1,2,3, tab2 contains 4,5,6, tab3 contains 7,8,9 I would have a resulting list of 1,2,3,4,5,6,7,8,9
How can I do that? I've found plenty of examples where you can match between tables, but that's no good as I want all the entries.
I tried the obvious:
=tab1[servId],tab2[servId],tab3[servId]
but that just gives me an error.
I'm sure there must be a really obvious way to do this, but can't for the life of me fifure it out.