New Post: Insert image from Url
MarkBaker, Thanks a lot for your response. This work well and it fits to cell after i set rowHeight and ColumnWidth dimensions. One small problem i have with images that are too long, let's say 50w and...
View ArticleNew Post: failed to open stream: No such file or directory
I'm experiencing this error in my server:Warning: require_once(/Classes/PHPExcel.php): failed to open stream: No such file or directory in /home/u927716272/public_html/calculadora_excel.php on line 41...
View ArticleNew Post: failed to open stream: No such file or directory
Besides asking why you're trying to include/require PHPExcel.php twice? Line 41; the leading / means that PHP is looking for the PHPExcel.php file in the /Classes directory.... immediately below your...
View ArticleNew Post: How to load a string instead of uploading a file?
I have the contents of xls file as string in any other variable in my program. question was does PHPExcel has any function which can take that string to load the new object of PHPExcel class? bcz the...
View ArticleNew Post: How to delete Horizontal (Category) Axis and Vertical (Value) Axis...
Hello. I am trying to create an excel file containing a chart, and here's the code:$categories = array( new PHPExcel_Chart_DataSeriesValues('String', 'Worksheet!$B$1:$G$1', null, 4), ); $values =...
View ArticleNew Post: How to load a string instead of uploading a file?
OK. No, not that I know of. However, if the file is in the xls format, it seems not difficult to make a version of the reader that handles the problem. Look at the code of the read method of the...
View ArticleNew Post: Move and size with cell option for images
Hello, I want to make my images to move and size with cell. Currently, move but don't size with cell option is selected when i add my pictures on xlsx file. Is there a way to change the default option...
View ArticleNew Post: Read the excel style name from an Excel file
Thanks Mark. That's really annoying! In our case, the styles are accessible via Macros so I'll probably write a Macro to do the export since we need a pretty limited set of styling features that we...
View ArticleNew Post: How to find highest row of particular column?
Hi, How can I find the last row of particular column? i know that getHighestRow() will give you the highest row of the sheet. Is there a way to find highest row for specified column?? Thank you!!
View ArticleNew Post: How to find highest row of particular column?
Dhee, If you get a column as reference, it contains basically all rows from worksheet right? So, if your column contains all rows why is not good the result from getHighestRow method? Regard, Andrei Kun
View ArticleNew Post: Move and size with cell option for images
Is there an option to have that for all images? I mean, it should be and it should have the option to set it but i don't know how and i couldn't fid anywhere in documentation specified. Can someone...
View ArticleNew Post: How to find highest row of particular column?
Hello Andrei, Thanks for you response. If you look at this image below: I would like to get row 5 as my response, since it is the last entry under column A and would like to ignore rows 6 and 7 When I...
View ArticleNew Post: Working with Yii active record
I guess is something with YII. When the file is saved on the disk, it opens fine; when downloaded, not working.
View ArticleNew Post: Working with Yii active record
Solved addingheader('Pragma: public'); ob_clean(); So, the part to download is:header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); header('Content-Disposition:...
View ArticleNew Post: Move and size with cell option for images
In order to have it, i changed 0x01 and 0x02 to 0x00 in Excel5.php. $spContainer->setSpFlag(0x00); - will make it to be "move and size with cell". But, i mean, it should be a way to configure it...
View ArticleNew Post: Cell Protection
$objPHPExcel->getActiveSheet()->getProtection()->setSheet(true);...
View ArticleNew Post: getCalculatedValue with Table in excel 2010
Hi all, I have a problem. My calculation in excel is: =IFERROR(VLOOKUP([@ID],Table15[[QUEST ID]:[Reward '#3]],$G$11,FALSE),"card:71003") Calculation can calculate in excel but can not get in PHPExcel,...
View ArticleNew Post: PEAR channel not available
This is still a problem. I find pear.pearplex.net permanently inaccessible.
View ArticleNew Post: ROUND Function getCalculatedValue() error
Hi I am having a problem with the getCalculatedValue() returning the wrong result when using the ROUND function. Please see below for the code being run:// Create new PHPExcel object $objPHPExcel = new...
View ArticleNew Post: 13 digit numbers get rounded in Excel 5 format
hello guys, i'm using phpexcel to read an excel file. on the first column i have 13 digit numbers to represent codebars, but when using this library i get something like this: original value in excel:...
View Article