How To Convert Xlsb Files To Xlsx Or Csv With A Script In Macos? I've Tried R And Javascript Without Success?
I've tried R and a JavaScript library j without success. I saw a way to do it with libreoffice CLI, so should I try with bash? With j I did: j file.xlsb --xlsx --output file.xlsx
Solution 1:
I'm not sure this is bash related, but sure you could try running LibreOffice from the command line to convert xlsb to csv:
soffice --convert-to csv file.xlsbOr if you have many files to convert:
soffice --convert-to csv *.xlsb
Post a Comment for "How To Convert Xlsb Files To Xlsx Or Csv With A Script In Macos? I've Tried R And Javascript Without Success?"