tags:

views:

158

answers:

1

I have a spreadsheet that has merged cells in it an I want to unmerge the cells and have the data expanded into the unmerge rows. How can I do this programetically or through macros?

+1  A: 

The way to un-merge cells is (through VBA scripting):

Range("A1").MergeCells = False
friol