I generate my spreadsheet with xslt and want a cell with wrapped text (or better: a text with a line break in it).
So my xslt generates the following XML for the sheetdata:
<sheetData>
<row r="1">
<c r="A1" t="inlineStr">
<is>
<t>
a simple string
line break jeeeehaaa
</t>
</is>
</c>
</row>
</sheetData>
After I'm finished building my Workbook, I open it in Excel; and there's no line break, just a simple one-line string in A1.
has anyone a solution to this? Doesn't have to be in xml or xslt (but would be nice). I could also do some things in c#