We have multiple situations where we would like to open an existing excel document in a read-only manor, please consider adding a “read-only” option to the work book open method. If there are any changes, they would be discarded.
This also allows us to open excel documents that are controlled at the OS level for security purposes as well. We have several excel documents we can read data from that is input into others, while no one is allowed to modify the originals.
Thanks,
Mark Warner
Hi,
Thanks for your question.
When you load excel file into a workbook, it is loaded into a memory stream. So whatever changes you make remains in memory unless you save it.
In your case, you should not save the workbook.
Hi,