Can't locate object method "AddCell" via package "Spreadsheet::ParseExcel::Worksheet

230 views
Skip to first unread message

Akhilesh Patil

unread,
Jun 6, 2015, 2:02:47 AM6/6/15
to spreadsheet...@googlegroups.com
I am using the following code as on the cpan website but I am getting error as
:


Can't locate object method "AddCell" via package "Spreadsheet::ParseExcel::Works
Press any key to continue . . .


#!/usr/bin/perl


use Spreadsheet::WriteExcel;

use Spreadsheet::ParseExcel::SaveParser ;
  
    # Open an existing file with SaveParser
    my $parser   = Spreadsheet::ParseExcel::SaveParser->new();
    my $template = $parser->parse('sample.xls');
    
    # Get the first worksheet.
    #my $worksheet = $template->worksheet(0);
    
    my $worksheet = $template->worksheet(0);
    
    my $row  = 0;
    my $col  = 0;
 
    # # Overwrite the string in cell A1
    
    
   $worksheet->AddCell( $row, $col, 'New string' ); 
    # # Add a new string in cell B1
     # $worksheet->AddCell( $row, $col + 1, 'Newer' );


    # # Add a new string in cell C1 with the format from cell A3.
    # my $cell = $worksheet->get_cell( $row + 2, $col );
    # my $format_number = $cell->{FormatNo};

    # $worksheet->AddCell( $row, $col + 2, 'Newest', $format_number );


    # # Write over the existing file or write a new file.
    $template->SaveAs('sample.xls');



Reply all
Reply to author
Forward
0 new messages