Tagged Questions
PHPExcel is a library written in pure PHP that provides methods to read workbook files generated by Excel and other spreadsheet programs (Excel 95 and higher - both xls and xlsx files, Excel 2003 XML, Comma-Separated Value, SYLK, Open Office Calc and Gnumeric); to manipulate spreadsheet data; and to create/write to various formats (Excel BIFF8, Excel 2007, Comma-Separated Value, HTML, and PDF).
7
votes
1answer
346 views
How can I join Excel documents using PHPExcel?
I'm using PHPExcel to dynamically generate order receipts.
I'd like to be able to generate a "summary" Excel file, containing all the order receipts (one per worksheet).
Is there a way to "join" two ...
7
votes
2answers
358 views
PHPExcel memory issue
I'm trying to loop through a 3mb Excel document, to get all the data I will then have to insert into the database. The worksheet I'm using has got 6500 rows, but it might vary in the future. I've ...
6
votes
1answer
3k views
phpexcel set data type on range of cells
With PHPExcel, I'm using:
$workSheet->fromArray($array);
To set my data. However, one column needs to be set as string (a number with a leading zero, the leading zero gets cut off if not set to ...
6
votes
2answers
917 views
How to get the number of columns of worksheet as integer (28) instead of Excel-letters (“AB”)?
Given:
$this->objPHPExcelReader = PHPExcel_IOFactory::createReaderForFile($this->config['file']);
$this->objPHPExcelReader->setLoadSheetsOnly(array($this->config['worksheet']));
...
5
votes
1answer
157 views
PHPExcel - Reading the Cells and Passing it into MYSQL
I'm trying to use a php script to read an xlsx file, and pass the information from the cells off into MYSQL
here is my code, I'm using PHPExcel version 1.7.6 and PHP 5.3.5
require_once ...
5
votes
2answers
274 views
excel-reader utf problem
Can you help me with problem writtent below:
I am getting error iconv() [function.iconv]: Detected an illegal character in input string when i am reading xls file and converting it into csv. I am ...
5
votes
1answer
526 views
How to use PHPExcel correctly with Symfony 2
I need to use PHPExcel with a symfony 2 project. Anyone know how to set up the project correctly to use the library? Should i put it in the vendor directory? What should be changed in the ...
5
votes
1answer
303 views
PHPExcel will not export to CSV
I am banging my head against a wall trying to figure out why I cannot get PHPExcel to output a csv file. Oddly enough, this works in Internet Explorer- it outputs as csv, but in every other browser I ...
5
votes
2answers
1k views
PHPExcel very slow - ways to improve?
I am generating reports in .xlsx using PHPExcel. It was okay in the initial testing stages with small data sets (tens of rows, 3 sheets), but now when using it on a real production data with over 500 ...
5
votes
1answer
4k views
PHPExcel reader — help required
I m using PHPExcel to read data from Excel sheet and store in mysql table, till now i m able to upload .xls as well as .xlsx file and after uploading the xls i got below table structure ...
4
votes
1answer
100 views
PHPExcel reading past $highestRow
I'm using PHPExcel to load xls files into a mysql database. Everything is working fine except for one thing: the PHPExcel reads ALL rows in the worksheet, even the blank ones and if, for example, my ...
4
votes
1answer
310 views
Import an excel file into a MySQL table with PHPExcel
Ok so I have been able to get php to show the data in excel .xls sheet but this same data I wanna be able to insert into my table. I can't seem to figure that part out, here's what I got so far:
...
4
votes
1answer
488 views
PHPExcel modify existing .xlsx file with multiple worksheet
require_once '../Classes/PHPExcel/IOFactory.php';
/** PHPExcel */require_once '../Classes/PHPExcel.php';
$excel2 = PHPExcel_IOFactory::createReader('Excel2007');
$excel2 = ...
4
votes
2answers
651 views
how to make New lines in a cell using phpexcel
i have problem with php excel,
i want to make new line in one cell but i can't, i have tried using \n or <br /> but itsn't work. this my code:
...
4
votes
2answers
2k views
Windows 7: “Excel found unreadable content”
I'm using PHPExcel to generate a very simple .xls file (PHPExcel_IOFactory::createWriter($PHPExcel, 'Excel5')). Whenever that file is opened on Windows 7 using Excel 2010 or 2007, I get the following ...
4
votes
4answers
990 views
Why PHPExcel does not allow to write more than 5000 rows
Can any one please tell me Why PHPExcel does not allow more than 5000 rows.
I am using an open-source PHPExcel for report generation on my projects and i could not write more than 5000 rows of data ...
4
votes
2answers
2k views
Alternative for PHP_excel
Is there any alternative for PHP_excel which can "Export to XLSX/XLS" file in a customized format?
4
votes
2answers
4k views
CSV Export/Import with PHPExcel
Hi
Could you please guide me or provide me with some sample codes for performing CSV export and import using the PHPExcel library?
Excel export and import is fine but I need csv export/import as ...
4
votes
1answer
3k views
PHPExcel how to get column index from cell
PHPExcel $cell->getColumn() returns 'A', 'B', 'C', ...
which is the best way to get the integer (0, 1, 2, ...) from the cell.
This function doesn't exist.
$colIndex = $cell->getColumnIndex();
...
4
votes
2answers
4k views
PHP Excel - Correct format for strings / numbers beginning with zero?
I'm trying to use PHP to create a file containing a list of phone numbers.
It's working OK however if the phone number begins with zero, the digit is dropped from the excel file.
Does anyone know how ...
3
votes
1answer
174 views
Retrieving image in PHPExcel
I want to read/retrieve an Image from excel file to PHP using PHPExcel.
This code is used to retrieve a value from a particular cell.
...
3
votes
1answer
78 views
PHPExcel getFormatCode Issue
I am using PHPExcel to read data from Excel. It is not giving me proper cell number format even though I set it as date ('YYYY-MM-DD') format. The code I use
$reader = new PHPExcel_Reader_Excel5();
...
3
votes
2answers
92 views
Passing URL variables to PHPExcel with Jquery
I'm trying to pass URL variables to my PHPExcel PHP script, so that i can extract them in the script using the $_GET array.
The call to the PHPExcel script happens when a form (form1) button is ...
3
votes
1answer
162 views
PHPExcel create/style/save PDF Documentation
I'm using the PHPExcel library in a couple of project and love the functionality it provides. Currently I needed to save as a PDF and found that PHPExcel can do this but I'm finding it rather hard to ...
3
votes
1answer
72 views
How to read the visible data of the cell, not the underlying formula in PHPExcel?
I want to know how to read the visible/calculated contents of the cells of an Excel Sheet & not the underlying formula.
For example:- if a cell contains sum(a1,a5) which equals say 123, then it ...
3
votes
1answer
1k views
Set Background cell color in PHPExcel
How to set specific color to active cell when creating XLS document in PHPExcel?
3
votes
2answers
471 views
PHPExcel reading a cell's format
I am having trouble finding out how to read a cells format. I need to know if a cell's format is a date or not because when I read it into PHP it becomes a 5 digit number from excel. I know I can ...
3
votes
2answers
601 views
Extracting pictures/images within an Excel file (xls) using PHP
I have a spreadsheet that I would like to import using PHP. I can import the cell data using PHPExcel, but can't figure out how to use images from within the spreadsheet.
Is there a way of doing ...
3
votes
1answer
393 views
PHPExcel clone .xlsm with macros
I'm trying to read, clone and write and .xlsm file with PHPExcel but I get an error:
Fatal error: Uncaught exception 'Exception' with message 'Worksheet!G177 -> Formula Error: An unexpected error ...
3
votes
4answers
261 views
Apache crashes in a large foreach loop on an associative array in PHP
EDIT: In response to Robus' answer I tried to run the PHP script from command line. This is the result:
But interestingly; an echo statement that was located after the foreach loop in my code ...
3
votes
1answer
698 views
PHPExcel in CakePHP: error--excel file incompatible or corrupted
I'm using Cake; as I open the excel file in the browser with a function generate:
I'm getting this error from Microsoft Excel:
Excel cannot open the
file 'Groups list .xlsx' because the
file ...
3
votes
2answers
3k views
PHPExcel runs out of 256, 512 and also 1024MB of RAM
I don't understand it. The XSLX table is about 3MB large yet even 1024MB of RAM is not enough for PHPExcel to load it into memory?
I might be doing something horribly wrong here:
function ...
3
votes
2answers
862 views
How to find out how many rows and columns to read from an Excel file with PHPExcel?
With the following code, I am able to read the cells out of an Excel file with PHPExcel.
I currently manually define how many rows and columns to read.
Is there a way that PHPExcel can tell me how ...
3
votes
1answer
1k views
PHPExcel set same properties, content etc on multiple sheets at once
Is there anyway to set the same properties (colors, row height, alignments) and content (hear names) for all sheets at once with PHPExcel?
How?
Thank you.
3
votes
1answer
468 views
How to generate a password protected spreadsheet from PHP?
How to generate a password protected spreadsheet from PHP ?
I tried PHPExcel library from http://phpexcel.codeplex.com/
PHPExcel offers 3 levels of “protection”: document security, sheet security ...
3
votes
3answers
1k views
php_excel07- How to make grow the height of cell based on cell data(xls)
in my application i need to export to xls file in a predefined format.
so I just integrated php_excel2007. i am using one template with a predefined format. The problem here is the cell data may ...
3
votes
5answers
2k views
How to fix a memory error in PHP?
Fatal error: Allowed memory size of
134217728 bytes exhausted (tried to
allocate 1078799 bytes) in
D:\xampplite\htdocs\Scraper\PHPExcel\Reader\Excel2007.php
on line 269
This error happens ...
3
votes
1answer
397 views
Rows written by PHPExcel cannot be read from other libraries
I know this isn't the right place to ask about this specific vague problem, but maybe someone knows this library well enough to enlighten me. Here is the thing:
I am writting an Excel5 over an ...
3
votes
2answers
916 views
Reading multiple files with PHPExcel
I just recently started using this library (the one from CodePlex), but I ran into some issues. My goal is to use it so I can process some data from multiple Excel files, and send such data to a ...
3
votes
2answers
6k views
PHPExcel how to set cell value dynamically
How to set cell/column value dynamically using PHPExcel library?
I am fetching result set from MySQL database and I want to write data in excel format using PHPExcel library. Looking at example
...
2
votes
1answer
29 views
How to use concatenate function in PHPExcel
$objPHPExcel->getActiveSheet()->SetCellValue('L'.CONCATENATE('A','C','D','E','F','G','H','I','J','K'),'0);');
Can anyone tell how to use the concatenate function in php Excel?
2
votes
3answers
78 views
PHPExcel class not found in Zend Autoloader
I am struggling with namespaces in Zend Framework (at least I think it's a namespace issue).
I want to integrate PHPExcel into my Zend project. Relevant file structure is as follows:
/
-library
...
2
votes
1answer
84 views
How to open an Excel file with PHPExcel for both reading and writing?
I'm using the PHPExcel library, and I'm creating xls objects either for writing or for reading:
PHPExcel_IOFactory::createReaderForFile('file.xlsx')
PHPExcel_IOFactory::createWriter('Excel2007')
...
2
votes
1answer
75 views
Unable to display date, time and numbers properly using PHPExcel
this is my first question in stackoverflow. I am trying to use PHPExcel to create an HTML table from .xlsx file. You can find my project in:
http://rahulr92.x10.mx/excel/index.php
Login with username ...
2
votes
0answers
47 views
Unescaped Characters in Cell Stop Row Processing PHPExcel
This is a follow-on question from this one: Algorithm to dynamically merge arrays
There are unescaped characters in some of the cells in the spreadsheet. I try to escape them with addslashes() but ...
2
votes
1answer
106 views
PHPExcel: Read all values (date, time, numbers) as strings
I am facing issues with dates and time. I want them to be read just like they appear in the excel workbook.
So, I believe if I get all cells of the sheet using toArray(), then I should simply do ...
2
votes
2answers
62 views
PHP serializable working on localhost but not on webserver
I'm working on a web page where I have some data visualized in html tables. I want the user to be able to retriev the data as an Excel document and am using PHPExcel for this purpose. The data is ...
2
votes
2answers
68 views
phpExcel , how to write superscript in an excel
I`m using the PHPExcel class ,to write in an excel file.
My question is: how to write a data in a cell with superscript,if my value is ( M<sup>3</sup>) to M3 (in excel)
// ...
2
votes
2answers
117 views
PHP export huge excel files
I am using PHPExcel class in php to export data from mysql table. The php page simply write the excel data in a loop like:
$objPHPExcel = new PHPExcel();
# Query result goes to array $result
# ...
$i ...
2
votes
0answers
72 views
PHPExcel reader doesn't seem to be reading in file?
I'm trying to open an xlsx file to parse it into an sqlite3 db. But I don't seem to be able to even open the xlsx file.
This is my code:
<?php
require_once 'Classes/PHPExcel.php';
...