Hello. I open a .xlsm file using my script written in Lua. This is how I can get the workbook:
self._desktop = self._calc:createInstance("com.sun.star.frame.Desktop")
self._workbook = openWorkbook(self._desktop, self._file_path)
How can I save a document to the path I need, in the new .csv format?
P.S. I would be happy with an example not only in Lua, but also in Python