-
Notifications
You must be signed in to change notification settings - Fork 18
882003 - Add FAQ for how to convert xls to xlsx document. #2076
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
|
|
||
| //Saving the workbook as stream in xlsx format | ||
| FileStream stream = new FileStream("Output.xlsx", FileMode.Create, FileAccess.ReadWrite); | ||
| workbook.SaveAs(stream); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please set workbook version to Xlsx before saving.
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
Mohan2401
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do the changes.
| application.DefaultVersion = ExcelVersion.Xlsx; | ||
|
|
||
| //Loads an xls file | ||
| FileStream fileStream = new FileStream("InputTemplate.xlsx", FileMode.Open, FileAccess.Read); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the file format to xls
|
Build Status: INPROGRESS 🔃 |
|
CI Status: SUCCESS ✅ |
Added FAQ for how to convert xls to xlsx document.