What can be a good alternative for Excel that works on Linux? Currently I need to use VBA, Solver, Analysis Toolpak charts. Moreover the alternative should read xls and xlsx files. Doesn’t need to be free or open source.
Any recommendations? Thank you.
A bit of an unusual suggestion, but i’ve replaced Excel with Python. I deal with large datasets anyway, so Python was arguably a better fit for what i do.
Packages to check out to see what is possible…
Everything is in text files. Scripts are version controlled in git. Calcs happen super fast. I spend more time transferring data from DBs than waiting for the calcs to finish.
Also, Jupyter Lab is one of the coolest environments for scientific programming. Write documentation and explanations of your work in Markdown while writing the code, and seeing the results. Oh, and it’s programming language agnostic, Python is just the default. I use it with R most of the time.
My bro!