New Post: Time cell is displayed as string when value is bigger than 24:00
no , the problem is when the value is bigger than 24:00 , for example 25:00 , in my time cell it would be displayed not as a time value , 25:00 but like a string value ('25:00:00) .
View ArticleNew Post: Export data with PHPexcel in an organized table.
Alright i'm getting closer to getting to the actual end result however its only showing 1 record at a time. Im sure im missing a code that I am not understanding, would anyone know what I am missing? I...
View ArticleNew Post: Export data with PHPexcel in an organized table.
Alright well im getting help at http://stackoverflow.com/questions/26133953/phpexcel-help-how-to-export-data-with-phpexcel-in-an-custom-table-layout?noredirect=1#comment41037845_26133953 so for those...
View ArticleNew Post: Can't upload huge Formulas to Excel file
Hi everyone. Need your help with problem: I need to Insert Formulas in the cells. Simple Formulas like =A1+A2 are uploading OK. But such as "=(C18100%/D18)100%" don't uploading. Just empty cells. Also...
View ArticleNew Post: Can't upload huge Formulas to Excel file
(C18100%/D18)100% is not a valid excel formula, (missing operator between (C18100%/D18) and 100%)=(((((C17(1-(Скидка+НакопСкидка))(1-Самовывоз)))(1-ПоФакту)))(1-Скидка_Упаковка)) Are those named ranges...
View ArticleNew Post: wrong cell width with autosize in cell containing text
Hi I have made a sheet using office 365, but when showed online the cell width is often too narrow and text is wrapped. I have tried with different fonts an browsers, but to no avail. if I insert...
View ArticleNew Post: getOldCalculatedValue returns NULL
I concluded that getOldCalculatedValue returns already calculated formula if a cell contains a formula, or value if a cell does not contain a formula. My assumption is confirmed by Mark Baker's post...
View ArticleNew Post: getOldCalculatedValue returns NULL
Moved question to stackoverflow: http://stackoverflow.com/questions/26256356/phpexcel-getoldcalculatedvalue-returns-null
View ArticleNew Post: getOldCalculatedValue returns NULL
It isn't strictly true, there are several reasons why getOldCalculatedValue() may return a NULL, even for a cell that contains a formula. The main reasons are:Not all spreadsheet formats support...
View ArticleNew Post: wrong cell width with autosize in cell containing text
How are you using PHPExcel with this Office365 worksheet?
View ArticleNew Post: removeRow($rowIndex) only with a cellvalue in one columne
Looking for a script which removes the rows which have a cellvalue in on columne. For example: Remove all rows with entry in columne H. I was sondering if anyone can help me out today? Dirk
View ArticleNew Post: showing blank values as a line (показывать пустые значения как...
Hello! Tell me, please. How to set the PHPExcel diagram "showing blank values as a line." Need an example of code, or at least the name of certain functions. Thank you.Здравствуйте! Подскажите,...
View ArticleNew Post: wrong cell width with autosize in cell containing text
I have made a sheet in office365 and uploaded it, and it's when i'm displaying it online with PHPExcel, the width is too narrow Sorry, I should have been more clear, but - you know - it was obvious to...
View ArticleNew Post: toArray returns 65382 rows
I have a problem with reading only the rows in a sheet which contains data. I have a sheet with 38 rows. But when I use $rows = count($objPHPExcel->getActiveSheet()->toArray()); I get 65382 rows...
View ArticleNew Post: wrong cell width with autosize in cell containing text
How are you displaying it online with PHPExcel? What does your code look like? How are you setting the cell widths in Office365?
View ArticleNew Post: wrong cell width with autosize in cell containing text
My code is not much:<?PHP error_reporting(E_ALL ^ E_NOTICE); require_once './Classes/PHPExcel/IOFactory.php'; $objPHPExcel = PHPExcel_IOFactory::load("Mappe1.xls"); $objWriter =...
View ArticleNew Post: Create CSV file with Excel compatibility
Hello, I'm using codeplex for a long time and it solves a lot of problems daily. I need to create a CSV file with Excel compatibility to be sent and processed. Now I'm creating a CSV file like this:...
View ArticleNew Post: toArray returns 65382 rows
I have this problem a lot, especially in .xlsx spreadsheets. First of all, make sure there is not a row 65382 rows down with something in it. I've seen that, I think even a space can cause this. What...
View ArticleNew Post: toArray returns 65382 rows
Using the rangeToArray() method allows you to set a limit on toArray(); and use getHighestDataRow() and getHighestDataColumn() to find the highest row and column that actually contain data (though even...
View ArticleNew Post: toArray returns 65382 rows
Another problem I run into on some spreadsheets isn't when I get to the toArray point, it is here: $objPHPExcel = PHPExcel_IOFactory::load($filename); Sometimes this is where it goes south, uses up...
View Article