How do I combine data from two or more columns into a single column?
Let's say I have a table with three columns: A, B & C. I want to append the values found in the rows of column A with the values of the rows in columns B and have the results appear in column C.
For example,
A B C
1 6 1
2 7 2
3 8 3
4 9 4
5 10 5
6
7
8
9
10
I don't mind duplicate values or the order of the resultant list (I can deal with that myself), but is there a formula (perhaps utilizing the VLookup or Index functions) which will produce the result?
Obviously, I could just copy/paste the values from column A onto column C and then copy/paste the values from column B below that, but it would be very helpful to my overall project to have this done automatically.