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
2009-02-08 14:03:11