PHP_XLSXWriter icon indicating copy to clipboard operation
PHP_XLSXWriter copied to clipboard

Lightweight XLSX Excel Spreadsheet Writer in PHP

Results 123 PHP_XLSXWriter issues
Sort by recently updated
recently updated
newest added

First off - I've been using PHP_XLSXWriter for years and I absolutely love it. Thank you so much! I've read through all of the documentation and cannot seem to find...

The equal sign should be stripped when inserting a formula into <f> tags (see [Reference](https://msdn.microsoft.com/en-us/library/office/documentformat.openxml.spreadsheet.cellformula.aspx)). While Excel will still handle it correctly, it can cause errors in other applications (e.g....

Hi, When setting the 'orientation' for printing (portrait or landscape) directly into the xlsxwriter class, the lanscape option is not applied. Other thing, Is the 'Row to repeat at top'...

Support for PageSetup(paperSize, scale/fitToPage, margin, printTitle, and so on) by adding 'page_setup'=>{array} to options array in writeSheetHeader() function. Added example PHP script: ex12-page-setup.php Fix issue #204. Including issue #190, pull...

1. Partly related to #189 : When specifying fraction '# ??? / ???' by format specification, it is not a source code implementation that determines cell type as 'n_numeric'. (Strictly,...

Added support for multiple border styles, e.g. $default_style = ['fill' => '#5b9bd5', 'color' => '#ffffff', 'font-style' => 'bold', 'border' => 'top,right,bottom', 'border-style' => 'thin,thick,thin'];

Firstly, let me say - Great Tool! So simple to use, and so fast!. I'm using with PHP to generate a document rather than a listing (not the best use...

Greetings, in 0.32 it is not possible to style the header row. I've slightly modified the writeSheetHeader method to accept an optional style like writeSheetRow. See the attached patch. Thank...