M
Mike Labosh
A guy gave me an Excel file that he needs me to covert to XML. No problem.
Slurp it into a database and use a DataSet.WriteXML() call to turn it into
an XML file.
But I can't import it into Access because it has "Merged Cells". For
example, data that should look like this:
ColA ColB
----- -----
Rec1 this
Rec2 this
Rec3 this
Rec4 that
Rec5 Other
The three "this" cells have been merged into one tall cell:
ColA ColB
----- -----
Rec1 this
Rec2
Rec3
Rec4 that
Rec5 Other
I need to "unmerge" these, but I know almost nothing about Excel. Can
someone show me the magic thing to do?
Slurp it into a database and use a DataSet.WriteXML() call to turn it into
an XML file.
But I can't import it into Access because it has "Merged Cells". For
example, data that should look like this:
ColA ColB
----- -----
Rec1 this
Rec2 this
Rec3 this
Rec4 that
Rec5 Other
The three "this" cells have been merged into one tall cell:
ColA ColB
----- -----
Rec1 this
Rec2
Rec3
Rec4 that
Rec5 Other
I need to "unmerge" these, but I know almost nothing about Excel. Can
someone show me the magic thing to do?