Hello All,
Our requirement is to create excel via XSLT transformation and send that file as an attachment via email.
In that excel we have text with 500 chars . For that text row we want to achieve Wrap Text functionality which we have in EXCEL . so it will be properly visible in excel. any suggestion how i can achieve this ?
<Row ss:Index="15">
<Cell ss:StyleID="s80">
<Data ss:Type="String">Project Description</Data>
</Cell>
<tt:loop ref=".table">
<Cell ss:StyleID="s81">
<Data ss:Type="String">
<tt:value ref="PROJ_DES2"/>
</Data>
</Cell>
</tt:loop>
</Row>
Regards,Harshali