poi.scala icon indicating copy to clipboard operation
poi.scala copied to clipboard

Excel meets scalaz

Results 11 poi.scala issues
Sort by recently updated
recently updated
newest added

Dependencies haven't been updated since sbt 0.13.x; some artifacts required for running `sbt test` are unavailable. After updating `project/build.properties`... ``` [info] Loading global plugins from /Users/ITMETHO/.sbt/0.13/plugins [info] Loading project definition...

For the merge sheets sample that has been provided in readme.md file, I get an compilation error as stated in the subject. Versions: scalaVersion := "2.12.5" ... "info.folone" %% "poi-scala"...

A question was asked in #52 ( But how to order sheets by name or by adding order?) and this code for sorting by name was given: ```scala val sheets:...

Great project, we've been using it in production for half a year now. Is it possible to add some functionality to set column width without auto sizing features? Auto sizing...

I'm using scalaz 7.1.0 and since I've added poi-scala I cannot run my tests. I get this error: `java.lang.IncompatibleClassChangeError: Found class scalaz.Memo, but interface was expected` I've searched online but...

Apache POI lets evaluating a cell's formula: https://poi.apache.org/spreadsheet/eval.html However this requires access to the underlying POI cell which is lost on creating the scala version of the cell Is there...

My expectation is to reuse some macro script inside a template to format the data for user purpose. Current version is not supported to export exel from an template. By...

Scala version: 2.11.8 Dependencies added ```scala val dependencies = Seq( "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2", "org.scalaz" %% "scalaz-core" % "7.3.0-M4", ... "org.apache.poi" % "poi-ooxml" % "3.14", "info.folone" %% "poi-scala" %...

The below artefact is not found.Could you please help me to execute the code Missing artifact info.folone:poi-scala_2.10.6:jar:0.14

It would be useful to have a generic extractor which could delegate to specialized extractors. For example: ``` scala object Cell { def unapply(cell: Cell): Option[(Int, Any)] = cell match...