Hi guys,
I made a python script to modify and save excel files.
The excel files are read by another Java script using POI-XSSF library ( library that reads xlsx file format )
With the python script, I modified some cells and save by using openpyxl.
It looks succesessful at my glance. When I opened the excel file, I found it the cell values are changed successfully.
However, some problems emeged.
When I tried to close the excel file, the pop-up appeared reading "Do you want to save ? Yes / No".
If I choose "Yes", then the Java script works well.
But, if I chooese "No", the Java script read nothing at all from the excel file as if it was a blank file.
My aim is to automate the modification of excel files in Linux system, without opening excel file manually.
But in this circumstances, the automation falls into failure ....
Is there any solution in this problem ? or is it the limitation of openpyxl library?
I would be very grateful for you to help me.
Thank you for reading.