New Post: MySQL export woes
I mean this : // require the PHPExcel file require 'Classes/PHPExcel.php';
View ArticleNew Post: MySQL export woes
That is the main library file that you need to download to use the PHPExcel library.... if you read this site, it has a download tab that gives you access to the PHPExcel download, which provides you...
View ArticleNew Post: What's the most efficient way to read large XLSX/XLS/CSV files?
it is reading row by row how i insert it into database? I want to insert half row in 1 table and half in another
View ArticleNew Post: Problem to add italic with setCellValueByColumnAndRow method
I everybody! I'd like to add italic style to a cell filled with setCellValueByColumnAndRow method but what I get is style on cell A1 I suppose because getStyle can't focus on my cell so how can I...
View ArticleNew Post: Problem to add italic with setCellValueByColumnAndRow method
By default, a call to setCellValueByColumnAndRow() will return a worksheet object. While the worksheet has a getStyle() method, it requires you to pass a cell address as an argument, otherwise it will...
View ArticleNew Post: Problem to add italic with setCellValueByColumnAndRow method
Thank you for answer me MarkBaker but in this way I get all cells in italic and not only the single one. thanks again ciao h.
View ArticleNew Post: How can I read named ranges?
I've been looking through the documentation about this topic but can't find anything about it. How do I read a named range in my workbook? All examples refers to absolute position in the Excelfile like...
View ArticleNew Post: Open file with special charaters
Hello, I use PHPExcel since one week and i meet a problem yesterday. I've try to open a file name "testé.xlsm" but apparently the "é" give me problem. When i try to open this file i've got an...
View ArticleNew Post: Problem to add italic with setCellValueByColumnAndRow method
Any news about my problem? thanks again. h.
View ArticleNew Post: Open file with special charaters
This is not a PHPExcel issue, but a filesystem issue..... it's never a good idea to use non-ASCII characters in filenames unless you know execatly what you're doing, and have full control of your...
View ArticleNew Post: Open file with special charaters
MarkBaker wrote: This is not a PHPExcel issue, but a filesystem issue..... I suspected that... :/ I'm agree that it's not a good idea but i haven't control on the filename. Thanks for your response, i...
View ArticleNew Post: Open file with special charaters
I've found a solution.$fileName = 'xls/testé.txt'; $fileName = mb_convert_encoding ($fileName,'CP1252', 'utf-8'); It converts $fileName from type of encoding 'CP1252' (which is a Windows encoding...)...
View ArticleNew Post: External References without calculating
Hi I need a way to enter an external reference in an VLOOKUP but I don't need the calculation engine to calculate the value right way. It would be fine if the calculation only happens when I open the...
View ArticleNew Post: External References without calculating
Yes, instantiate your Writer set the Writer object setPreCalculateFormulas to false save $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, "Excel2007");...
View ArticleNew Post: Reverse Vertical axis
Hi Pros! I'm currently exporting bar chart to the Excel file by using PHPExcel library. But, I have to reverse vertical axis and set the horizontal axis at top of the chart. I have googled and read the...
View ArticleNew Post: Export data with PHPexcel in an organized table.
Hi everyone, I am quite new to PHPExcel and learning PHP as I go. I managed to get PHPexcel to export my data from SQL via the code below. Right now its just outputting in basic style, meaning its just...
View ArticleNew Post: Export data with PHPexcel in an organized table.
Alright so far Ive got answers form other forums that I should be using setCellValue() and formarray(). having a real hard time finding examples online with what I am trying to accomplish. Would anyone...
View ArticleNew Post: Time cell is displayed as string when value is bigger than 24:00
i have i part of code that generate work duration of a developer for a task PHPExcel_Cell::setValueBinder( new PHPExcel_Cell_AdvancedValueBinder() ); $excel->getActiveSheet()->setCellValue('D' ....
View ArticleNew Post: Time cell is displayed as string when value is bigger than 24:00
FORMAT_DATE_TIME3 is a time format code h:mm that displays time based on a 24-hour clock, values over 24 hours will roll over to the following day, so 16:00 + 16:00 will give 1 day and 08:00 rather...
View Article