I have two columns filled with data in an Excel spreadsheet:
Column 1:
A
B
C
D
Column 2:
C
D
E
F
G
Desired Data: A,B,C,D,E,F,G (not A,B,C,D,C,D,E,F,G)
I want to combine the two columns, and remove any duplicates. I'm coming from a C# word, so my understanding of VBA is limited. I know I could create an array with the dimension of dimension(column1)+dimension(column2), then do some duplicate removal (is there one built in?), or something like that.
Any guidance would be appreciated, thanks!