Quantcast
Channel: PHPExcel Forum Rss Feed
Browsing all 2707 articles
Browse latest View live

New Post: [PHPExcel] freezePane() for iPad not working

Hello, I’m developing an Excel document with freezePane. I’m using the following code: $objXLS->getActiveSheet()->freezePane('X14'); Although I’ve tried with this code too:...

View Article


New Post: [PHPExcel] freezePane() for iPad not working

$objXLS->getActiveSheet()->freezePaneByColumnAndRow('X', 14);certainly won't work..... all *byColumnAndRow() methods expect a column number (starting from zero), not a column letter You're...

View Article


Image may be NSFW.
Clik here to view.

New Post: [PHPExcel] freezePane() for iPad not working

Thanks for your quick response. Already I have corrected the column parameter and it is already working in this axis but not working for ipad yet. I thought that the bug could be of PHPExcel because...

View Article

New Post: XIRR Formula does not display.

Thanx in advance. I Calculate XIRR but does not show in cell. Please help me. My Code. $irr_cal = '=XIRR(D6:D9,A6:A9,0.1)'; $objPHPExcel->setActiveSheetIndex(1)->setCellValue('B1', $irr_cal);

View Article

New Post: ChunkFiltered Reader adding blank rows

I am using code found on another thread to configure and use the chunk filter to read a large Excel spreadsheet to insert into a MySQL database. I load the active sheet from the filtered read object...

View Article


New Post: ChunkFiltered Reader adding blank rows

Yes, that's right. Row 17 is still row 17 whether you read the whole worksheet or a chunk... chunk reading is about specifying which cells get populated with data, and reading in chunks does exactly...

View Article

New Post: ChunkFiltered Reader adding blank rows

So, since the row number is retained, I should be able to use the start row inside the foreach loop to only read parts of the array starting after the current start row? Example: Use something like if...

View Article

New Post: What is the real PHPExcel library dev site?

Hi, sorry for the probably dumb question, but i'm a little bit confused... i see that currently exists two different project with almost the same file on two different places, this one on codeplex and...

View Article


New Post: What is the real PHPExcel library dev site?

On 25/07/2015 17:51, digitalblade wrote:I'm really confused because seem that both project are alive and are two different projects started from the same code-base. They're not two different projects....

View Article


New Post: Export to Excel

Hi i have been using PHP excel for a while now. I would like to export to excel and show the names of some foreign keys in the excel sheet export table. example $query = "SELECT serial_no, req_date,...

View Article

New Post: Export to Excel

I got the solution it all about joining the tables in the sql statements

View Article

New Post: Is there any way of reducing script processing time?

Dear all, First of all I want to say that PHPExcel is an incredible library. Very powerful and easy to use. My question is: when reading and uploading excel files to mysql database, is there any way of...

View Article

New Post: Building a Front-end for interacting with Spreadsheet

The only way you might do what you want is to store your PHPExcel objects in the PHP Session, but I have no idea how efficient that would be or even if it would work properly. A better approach is to...

View Article


New Post: set sheet title on top

we are using ->getActiveSheet()->setTitle( function to set title for every sheet, But i want to add this title on top, currently it is coming at bottom. Please confirm on this. Thanks

View Article

New Post: PHPExcel convert XLS to CSV with special characters

Hello, I'm having a small issue while converting an XLS file containing special characters to CSV file using PHPExcel classes. As exemple the name "Kévin" gives "Kévin" in the CSV generated file. Here...

View Article


New Post: PHPExcel convert XLS to CSV with special characters

The spreadsheet content will be saved in the CSV file encoded as UTF-8 Optionally, you can tell the CSV Writer to write a BOM as well$writer->setUseBOM(true); But it's up to the applications reading...

View Article

New Post: Filter on calculated field

I'd like to apply a filter to a worksheet to grab only the rows where the value of a calculated field (a field calculated from values from fields in other worksheets in the same file) is greater than...

View Article


New Post: Filter on calculated field

The formula in the fields I'm trying to filter on looks like this:=VLOOKUP(E2,LookUpData,6) It looks up values from one of the other workbooks in the same file. I've searched the code library and there...

View Article

New Post: PHPExcel convert XLS to CSV with special characters

Windows 7 64-bit PHP Version => 5.6.12 Running PHP from the command line.

View Article

New Post: Filter on calculated field

System is: Windows 7 64-bit PHP Version => 5.6.12 Running PHP from the command line.

View Article
Browsing all 2707 articles
Browse latest View live