Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.

Status ID Uploaded By Description Work Items Action
Applied
Nov 7
2063 Nov 6 at
11:58 PM
abas This patch (against subversion nightly 18578) enables correct calculation of formulas with cell references in functions (such as "=IF(A1=1;0;1)") . It also eliminates a silent PHP exit in function call_user_func_array.
Applied Nov 7: Fixed in SVN
Download

Applied
Oct 17
1962 Oct 17 at
4:34 PM
mrascii Added support for PHP 5.1.6, by defining DATE_W3C and having a fallback writeRaw method on the XMLWriter class
Applied Oct 17: Patch applied in source repository. Thanks for the input!
Download

Applied
Aug 12
1664 Aug 12 at
9:25 AM
koyama Should fix “Excel5 reader not handling UTF-8 properly” – at least for BIFF8 format.
Applied Aug 12: Patch applied in source repository. Thanks for the input!
7277
Download

Applied
Aug 11
1644 Aug 9 at
3:04 AM
koyama Fixes “Excel2007 reader not reading ‘keywords’ and ‘category’ document properties”
Applied Aug 11: Applied in source code repository
7255
Download

Applied
Aug 11
1629 Aug 5 at
4:21 PM
koyama Fixes "Bug involving column 'A' and methods removeColumnByIndex(), insertNewColumnBeforeByIndex()"
Applied Aug 11: Applied in source code repository
7216
Download

Applied
May 8
1195 May 7 at
11:05 PM
cendrizzi Ok, I'm fairly confident this will be a helpful patch (at least it helped me a lot). Included in this patch is a fix for percentage number formats, where the line was closed prematurely instead of concatenating. Also I added a new format for my benefit, basically currency without the decimal places. I took off basic for the label but this probably is not correct. I hope you will accept this format, and if you change the name as I expect you will, please let me know so I can keep my stuff compatible. Also, I used a number_format instead of sprintf on the currency formats, since it properly adds the commas as it appears on an excel spreadsheet.
Applied May 8: Patch applied in source repository. Thanks for the input!
Download

Applied
Mar 18
991 Mar 18 at
7:15 AM
pufuwozu When using the Excel5 and HTML writers, sometimes a cell with no text wouldn't get rendered even though there was a drawing on it.

This just "touches" the cell so that it gets rendered.
Applied Mar 18: Applied
Download

Applied
Mar 18
990 Mar 18 at
6:56 AM
pufuwozu Fixed a small CSS error in the HTML writer.
Applied Mar 18: Applied
Download

Declined
Nov 7
1823 Sep 12 at
10:02 AM
maecka This patch is my first try to add Chart Sheet Support to PHPExcel.

With this patch it's not possible to generate a chart programatically, though.

You have to generate your excel file, then open it in excel, add your chart, unzip the excel and get the xl/charts/chart1(x).xml file and add it to your excel file programmatically like this:

$sheet_chart = $objPHPExcel->createChartSheet();
$objPHPExcel->setActiveSheetIndex($index);
$sheet_chart->setTitle('chart');

$objDrawing = new PHPExcel_Chartsheet_ChartDrawing();
$objDrawing->setPath('./images/chart1.xml');

I'm writing a followup patch with extended support for charts.

Martin
Declined Nov 7: Will be developed under source control branch.


Declined
Aug 11
1227 May 13 at
7:33 AM
pufuwozu My boss optimised the speed and memory usage of PHPExcel quite a bit by refactoring the cell style loops.

The version of PHPExcel that it's based off might be a little old now. Sorry.
Declined Aug 11: Implemented in another manner


Updating...