PHP_XLSXWriter
PHP_XLSXWriter copied to clipboard
Lightweight XLSX Excel Spreadsheet Writer in PHP
All formulas I added to any cell kept coming up with double equals signs which caused an error when opened in a program like google sheets. It seems like ``...
Hi! I use PHP_XLSXWriter in my "downloadFile.php" to create and download my file; the content of the sheet came out from a query. (Example: select * from table where user="aaa";)...
Add variable to the function writeSheetRow - so you can add style to each cell and fix failed open files using office 2007, 2010, etc
I'm trying to get new lines inside a header cell. Only after I open the document, save it, and reopen it, the contents are as expected. Code: ~~~ $writer =...
No need to count columns to merge cells anymore. The old merge cell way: `$writer->markMergedCell($sheet1, $start_row=0, $start_col=0, $end_row=0, $end_col=4);` The new one: `$writer->mergeCells($sheet1, 'A1:E1');`
First - Thank you so much, this class is a true life saver for projects with thousands of data rows to export to excel. When setting the format in writeSheetHeader...
As far as I know there are two ways to pass style options for a row: 1. A single array containing styling options for all cells in the row 2....
I want to assign width to a spreadsheet column and also want to give that column some style like font weight etc. I wrote the code: $writer->writeSheetHeader('Order Report', $header, $styles1);...
You have type set to `project` in your composer.json file, which on packagist makes it suggest this command: `composer create-project mk-j/php_xlsxwriter`. Should it be changed to `library`?
When working with multiple sheets, the tabRatio should be a higher value by default. The default value only would show part of a tab. It would also be nice if...