New Post: PRICE and YIELD
Dear HosainkuetDo you have the code for the YIELD function please?Would be great to get that included.thx so muchMartin
View ArticleNew Post: Cell format changing after deleting row
Hi All,I'm having a little problem with a file that is generated using PHPExcel. The site I am using pulls data from an SQL database and puts it on a spreadsheet. Some of the data that is pulled are...
View ArticleNew Post: Sheet name containing accent (é è ç ....etc)
Hello,How can i get to load only one sheet by name containing an accent ? By the way i tried to use the method bellow echo'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory...
View ArticleNew Post: how to achieve excel's marco by phpexcel
I load a excel file and change something with phpexcel,it works very good except lost it's defined marcos,can anyone gives me a help?thanks a lot!
View ArticleNew Post: PDF renderer wont render correctly in website server, but on local...
as my title describes my PDF renderer, already specified to its write folders and configured in the code will execute on my local server but when i move it to my websites server, and re input the...
View ArticleNew Post: how to achieve excel's marco by phpexcel
PHPExcel uses an internal representation of your document, which at saving time is exported to excel. The internal representation however currently has no support for macros. Unfortunately macros are...
View ArticleNew Post: Sheet name containing accent (é è ç ....etc)
Replace$worksheetNames = $objReader->listWorksheets(); with$worksheetNames = $objReader->listWorksheetInfo();- Christopher Mullins
View ArticleNew Post: Cell format changing after deleting row
I fixed my problem, if anyone else ever finds themselves in my shoes, and finds this thread, here's what I did:Change the way the cells are written from regular to rich text. See the code snippet...
View ArticleNew Post: PDF renderer wont render correctly in website server, but on local...
Knowing what the error message says might help solve the problem
View ArticleNew Post: how to achieve excel's marco by phpexcel
I'm working on a patch for this, on the Excel 2007 Reader/Writer, as well as Ribbon elements.I would suggest coming soon.
View ArticleNew Post: PDF renderer wont render correctly in website server, but on local...
Sure thing, my error apears at openening the PDF file it reads:Adobe reader cannot open 'name.pdf ' beacause it is either not a supported file type or becuase the file has been damaged.It only...
View ArticleNew Post: accessing ->save() data as a data stream?
I wondering if it is possbile to access the data created by phpexcel as a data stream, such as$excel_data = $objWriter->save();I realize I could write the data to a file and then read the file, but...
View ArticleNew Post: How to read just a date from excel into MySql?
Ok, sorry for my bad english. So, just code. In your isDateTime test :if (PHPExcel_Shared_Date::isDateTime($cell)) {...
View ArticleNew Post: accessing ->save() data as a data stream?
If you do not want to write the file, so you want to send it directly to the browser?If so, the save method accepts a particular parameter ' php://output' that does exactly this.You can find a complete...
View ArticleNew Post: accessing ->save() data as a data stream?
No, I'm trying to capture the data without sending it to the browser.
View ArticleNew Post: accessing ->save() data as a data stream?
Basic PHP (but not recommended because of the memory overheads)$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); ob_start(); $objWriter->save('php://output'); $excelOutput =...
View ArticleNew Post: PDF renderer wont render correctly in website server, but on local...
Open the file in a text editor and look for any unusual text messages in plaintext, particularly at the beginning or end of the file
View ArticleNew Post: PDF renderer wont render correctly in website server, but on local...
I have this message:Fatal error: Class 'PHPExcel_Writer_PDF_mPDF' not found in /hsphere/local/home/c364411/desarollo.patruus.com/phpexcel/Classes/PHPExcel/Writer/PDF.php on line 64That's the error i...
View ArticleNew Post: Hyperlinks are not opening from Microsoft Excel (PHPExcel)
I am using the following code to generate hyperlinks in excel $objPHPExcel->getActiveSheet()->getCell($column_index . $row_index)->getHyperlink()->setUrl(...
View Article