There is a previous post doing what I need in graphical mode here:
Convert Calc(Excel) Data in XML in OpenOffice
Is it possible to do exactly the same thing as above .ods (.xls) to .xml using this transformation sample from the command line?
/Paul
So far I created the XML Filter as described as "CustData" and ran this command (tried all three variations):
libreoffice --convert-to xml:CustData --outdir ut/ outfile.xlsx
libreoffice --convert-to xml:"CustData" --outdir ut/ outfile.xlsx
libreoffice --convert-to xml[:CustData] --outdir ut/ outfile.xlsx
convert /home/paul/outfile.xlsx -> /home/paul/ut//outfile.xml using filter : CustData
Error: Please verify input parameters... (SfxBaseModel::impl_store <file:///home/paul/ut//outfile.xml> failed: 0x81a)
What am I doing wrong here? And why will double slashes occur between "ut" and "outfile.xml"?
/Paul