I have a Word document, and I want to to convert it to xlsx format by Aspose.Words 23.6, but the numbers in the converted document have changed to scientific notation, how can I ensure that it will not be converted? I can’t find the corresponding setting in the option settings.
The demo file
demo.docx (14.6 KB)
The output file
output.7z (7.1 KB)
The screenshot
20230704215050.png (62.8 KB)
The sample code
void Main()
{
var doc = new Aspose.Words.Document(@"C:\Users\54390\Downloads\demo.docx");
var ops = new Aspose.Words.Saving.XlsxSaveOptions();
doc.Save(@"C:\Users\54390\Downloads\output.xlsx", ops);
}