docjure
docjure copied to clipboard
Read and write Office documents from Clojure
Hi, `lein nvd check` complains of an existing vulnerability in poi-4.1.1.jar (CVE-2022-26336). The issue has been fixed in poi version 5.2.1, would it be possible to bump the version?
Hi there, using `[dk.ative/docjure "1.12.0"]` will bring in CVE-2019-12415, as [lein-nvd](https://github.com/rm-hull/lein-nvd/) would indicate. That is fixed with `[org.apache.poi/poi "4.1.1"]`, but one cannot pull that change without incurring into https://github.com/mjul/docjure/issues/82, so...
Add an example to the documentation about how to write a workbook to a stream.
Sometimes, we may want to use the default table header as the column map keys, without specify additional column-map.
If I try to output a worksheet, how do I make the formulas work? for example: ```clj (defn gen-excel-smple [] (let [wb (create-workbook "Price List" [["Name" "Price"] ["Foo Widget" 100]...
Does anybody have an example of how to apply styles to multiple sheets? Basically - I need the first row of every sheet (I don't necessarily know the names of...
Hi, Probably a newbie question: I have a cell set as Text, say 9A5655897 then when I read with select-columns I get "9A5655897" But if I have 91371672 then I...
I want to parse all the data from a tabular worksheet (one that has a header row) without having to type the column map for `select-columns`--like this: ``` (->> (load-workbook...
I have a simple Excel worksheet that has a formula cell with the function SKEW. Screenshot below: Trying to read in this Excel file will result in an exception using...
Not sure if occurring also with Java 1.9, in case documentation should state necessity to upgrade. The error is: ``` java.lang.RuntimeException: Unable to find static field: CELL_TYPE_BOOLEAN in interface org.apache.poi.ss.usermodel.Cell...