Hi ,
I am facing an issue with decimal rounding in ASPOSE.
When I manually enter the number 1234567890.123451711 in excel it becomes 1234567890.12345. But the same is not working in ASPOSE when I do workbook.Worksheets[0].Cells[“A1”].PutValue(“1234567890.123451711”);
I also tried
style.Number = 0;
workbook.Worksheets[0].Cells[“A1”].PutValue(“1234567890.123451711”);
workbook.Worksheets[0].Cells["A1"].SetStyle(style);
data123 = workbook.Worksheets[0].Cells["A1"].Value;
But its not working. Can you let me know if I am missing anything?