I have an excel table with the following format:
titleA titleB titleC
a 300 400
b 300
c 50 20
I wish to merge columns titleB and titleC into a single column (titleB) so that the final table will be:
titleA titleB
a 300
a 400
b 300
c 50
c 20
Can you show me some VBA code that will allow me to do that? Thank you!!!