Help for this page

Select Code to Download


  1. or download this
    foreach my $link ( @links ) { 
      my $url = "q{internal:'$link'!A1}";
    ...
      $row++;
      $col++;
    }
    
  2. or download this
    foreach my $link ( @links ) { 
      my $url = "internal:'$link'!A1";
    
    ...
      $row++;
      $col++;
    }
    
  3. or download this
        $worksheet->write_url('A6',  'internal:Sheet2!A1'                 
    +  );
        $worksheet->write_url('A7',  'internal:Sheet2!A1',   $format      
    +  );
        $worksheet->write_url('A8',  'internal:Sheet2!A1:B2'              
    +  );
        $worksheet->write_url('A9',  q{internal:'Sales Data'!A1}          
    +  );