fastexcel icon indicating copy to clipboard operation
fastexcel copied to clipboard

Generate and read big Excel files quickly

Results 73 fastexcel issues
Sort by recently updated
recently updated
newest added

Excel has formatting to indent a cell by a number of characters (see image below). Is there a way to set this format using fastexcel? Thanks ![image](https://github.com/dhatim/fastexcel/assets/124009353/21aa9c6e-41ab-4186-96c5-06f2ee4ce0d2)

As I understand neither fastexcel, nor POI itself support "strict ooxml" file format. It would be helpful for the user to detect the ooxml format and raise an early exception...

Hello, Right now, I've been searching for an efficient way to read an Excel file and have found this excellent library. However, I can't find a way to extract hyperlinks,...

The method is written as : ```java public void setFitToPage(Boolean fitToPage) { this.fitToPage = true; } ``` I think that it's an error and I purpose this : ```java public...

A call to `value(int r, int c, ZonedDateTime value)` should write the time in the correct time zone. Right now it always writes the date in the system time zone....

When the values in the cell are populated by an underlying formula, the existing methods are not giving the value seen on the cell instead getting the calculated values. This...

I am facing issue with setting default font name. Following example ignoring font name and also font size. ` org.dhatim.fastexcel.Workbook newWb = new org.dhatim.fastexcel.Workbook(fileOutputStream, "Test", "1.0"); Worksheet sheet = newWb.newWorksheet("test...

There are many projects for the mapping between an Excel Sheet to a List, but everyone of them miss something or is not still maintained. For example I really like...

Is this library support auto POJO mapping? e.g. I want read rows like this ```java Sheet sheet = wb.getFirstSheet(); List list = sheet.read(Pojo.class); class Pojo { @ColumnIndex(0) private String name;...