I have a single column of cells (several thousand rows) that all contain different content, for example:
ABC123
DEF456
GHI789
JKL101
MNO112
What I am trying to do is insert a cell beneath each cell and then duplicate the content from the cell above, to achieve this:
ABC123
ABC123
DEF456
DEF456
GHI789
GHI789
JKL101
JKL101
MNO112
MNO112
Does anyone know if this is possible ?
Thanks!