Onlyoffice sucks very bad with macros in my experience, lacks some advanced functions, and infuriatingly doesn’t seem to have options search, but other than that it’s fantastic, very intuitive, ergonomic and sleek option.
You might also find the Python library pandas useful. Its “DataFrames” can mirror your excel data 1:1 and you have convenience methods like to_excel(). Easy to combine with numpy for performant matrix math.
XLSX just becomes a container for storing/sharing your data, and while Python is used for analysis. I would use matplotlib for plotting rather than embedding in the sheet.
Agreed. I really tried to like Libre/OpenOffice over the years but it never felt right. OnlyOffice really hits the spot for me.
I don’t use Windows much any more but I was happy with the discounted student version of Office 2016, afaik the last perpetual license.
Onlyoffice sucks very bad with macros in my experience, lacks some advanced functions, and infuriatingly doesn’t seem to have options search, but other than that it’s fantastic, very intuitive, ergonomic and sleek option.
My own daily driver.
If I’m doing anything substantial, calculation-wise, I use openpyxl.
Interesting!
You might also find the Python library pandas useful. Its “DataFrames” can mirror your excel data 1:1 and you have convenience methods like to_excel(). Easy to combine with numpy for performant matrix math.
XLSX just becomes a container for storing/sharing your data, and while Python is used for analysis. I would use matplotlib for plotting rather than embedding in the sheet.