Hi, sorry my english
Workbook created OK
I try write decimal value- error <v>1,5</v>Workbook created OK
IWorkbook workbook = new XSSFWorkbook();
ISheet sheet = workbook.CreateSheet("Sheet1");
sheet.CreateRow(1).CreateCell(1).SetCellValue(1.5);
FileStream sw = File.Create("test.xlsx");
workbook.Write(sw);
sw.Close();
<?xml version="1.0"?>
<worksheet xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<dimension ref="A1" />
<sheetViews>
<sheetView tabSelected="true" workbookViewId="0" />
</sheetViews>
<sheetFormatPr defaultRowHeight="15" />
<sheetData>
<row r="2">
<c r="B2">
<v>1,5</v>
</c>
</row>
</sheetData>
<pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3" />
</worksheet>
2014-03-14 0:10 GMT+04:00 tonyqus <[email removed]>:
From: tonyqus
try the latest github source code and let me know if it's fixed.Read the full discussion online.
To add a post to this discussion, reply to this email ([email removed])
To start a new discussion for this project, email [email removed]
You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe on CodePlex.com.
Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at CodePlex.com