Results 6 comments of TjG

Hmm, examining excel-template's sourcecode, I may have to do something fancy to make this work. Like my questionable [little hack](https://gist.github.com/tjg/5c01b2bc1f6c2043ab2dcd2ec39d2328) to extend tables to the end of the data. (I...

Ok, seems the solution is to call `.updateHeaders` on each XSSFTable. Works on my test repo, but not yet on my real-world Excel files...

Hmm, for my real-world Excel files, looks like the new column names aren't going into the shared strings table. So presumably I'm supposed to call [`org.apache.poi.xssf.model.SharedStringsTable.addEntry()`](https://poi.apache.org/apidocs/org/apache/poi/xssf/model/SharedStringsTable.html), but now I have...

Might organizing a bounty/funding be worthwhile, @markedwards? It could be much cheaper than migration for your company and others.

Ah thanks @behrica for noticing, I used this, which installs `0.0.8`: ```bash python3 -m pip install cljbridge Requirement already satisfied: cljbridge in ./.venv/lib/python3.9/site-packages (0.0.8) ... ``` Verifying that it installs...

Hmm, unfortunately it still doesn't work for me... Set Python version: ```bash % brew install pyenv ... % pyenv global 3.10.16 % export PATH="$HOME/.pyenv/shims:$PATH" % python --version Python 3.10.16 ```...