New Post: Getting Error "Excel cannot open the file '....xlsx' because the...
Ok, I guess I'll have to just keep combing through it. The file is writing utf-8 and not creating BOM markers as near as I can tell. It appears to create extra white space, but for the life of me I...
View ArticleNew Post: how get cell format
Hello! How I can get cell format? I Try ->getCellByColumnAndRow(0, 24)->getCalculatedValue(), but it rerurns '6', I need '6 бухта' (sorry for russian letters)
View ArticleNew Post: How to write in an existing xls file ?
Hi, I have an issue with the read, modify and save. I got Fatal error: Maximum execution time of 30 seconds exceeded in different functions. Here is my code $objPHPexcel = new...
View ArticleNew Post: How to write in an existing xls file ?
I changed the php.ini to increase the Maximum execution time from 30 to 300, this worked, but the file took a long time be saved. Is there a way to improve it? I also have enabled the display errors in...
View ArticleNew Post: How to write in an existing xls file ?
Hi, I made my code working, but its too slow... it takes about 5 minutes to complete, is there a way to make it faster? This is my code, I hope someone could help me.$objPHPexcel =...
View ArticleNew Post: Lost all formulas in the excel sheet while saving
Hi.. i changed it it excel2007 and now its working
View ArticleNew Post: Err:504
Hi, I am getting Err:504 in some cells. here is the formula i used for the cell=INDEX($'Country Data (D)'.F1:F25;MATCH($G$7&$G$8;$'Country Data (D)'.A1:A25&$'Country Data (D)'.B1:B25;0))
View ArticleNew Post: How to write in an existing xls file ?
ocraw wrote: Hi, I made my code working, but its too slow... it takes about 5 minutes to complete, is there a way to make it faster? This is my code, I hope someone could help me. If that's all you're...
View ArticleNew Post: How to write in an existing xls file ?
Hi Mark, My spreadsheet is not too big, it has some formulas, but is a small file with only two sheets and about 50 rows and 30 cols each one, but I am not sure if it processing all cols and rows...
View ArticleNew Post: Composer only gives me 1.7.7
Hi. I tried installing PHPExcel via composer, and the latest version I could get was 1.7.7. Here's my composer.json{ "require": { "phpexcel/phpexcel": "1.7.*" } } How can I get 1.7.8 via Composer? Thanks!
View ArticleNew Post: How to write in an existing xls file ?
Hi Mark, I am still with the issue of the VLOOKUP, I read that some years ago there were some issues with this. I am using PHPExcel_1.7.8. I think the issues with this were fixed back in 2010. I hope...
View ArticleNew Post: How to write in an existing xls file ?
Mark, thanks for your support. The issue was with Excel 5, I updated the spreadsheet I am using to Excel 2007 and it's working just perfect. Saludos,
View ArticleNew Post: Here's how to create Excel from and HTML Table
hello mamuscia, Thank you for making the code very great, I need help to create a rowspan, This code is perfect, and the more perfect if it makes the code to generate rowspan. Can you help me? please...
View ArticleNew Post: Merging Cells rowspan from a Web html table.
hello lilmer, Thank you for making the code very great, I need help to create a rowspan, I found this code in http://phpexcel.codeplex.com/discussions/275807 to generate html table to excel, but does...
View ArticleNew Post: Err:504
Yes, gateway timeout ;-) But not only. I don't know OO, but i have read something about this error, so, check your formula. If it's a native Excel formula, she's look strange.
View ArticleNew Post: Reading Different Worksheets from one file
Hey, The excel spreadsheet file that i have can have anywhere between 1 and 12 worksheet's, what function (group of functions) would i use to get phpexcel to move from worksheet to worksheet, it is...
View ArticleNew Post: Reading Different Worksheets from one file
PHPExcel::getSheet($Index) // zero based PHPExcel::getSheetByName($pName) If you need to iterate for each sheet, you have a Worksheet Iterator, see Tests\28iterator.php for an example.
View ArticleNew Post: Reading text properties
Hi All, I am new to PHPExcel. i just need to read cell but with text formatting. As per image "this is bold". so how can i detect that "is bold" text is bold? Sorry for my English. Thanks All.
View Article