anand_perl has asked for the wisdom of the Perl Monks concerning the following question:
my $workbook = Spreadsheet::WriteExcel -> new ( "url.xls" ); my $row = 1,$col =1; my @links = ( "Sales","Maintainence","Sales","Profits","Region" ); my $worksheet1 = $workbook->add_worksheet ( "Summary" ); my $worksheet2 = $workbook->add_worksheet ( "Sales" ); my $worksheet3 = $workbook->add_worksheet ( "Maintainence" ); my $worksheet4 = $workbook->add_worksheet ( "Expenses" ); my $worksheet5 = $workbook->add_worksheet ( "Profits" ); my $worksheet6 = $workbook->add_worksheet ( "Region" ); foreach my $link ( @links ) { my $url = "q{internal:'$link'!A1}"; $worksheet1->write_url ( $row,$col, $url,$label ); $row++; $col++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Internal links in Excel
by Animator (Hermit) on Oct 01, 2008 at 14:43 UTC | |
by anand_perl (Novice) on Oct 03, 2008 at 04:06 UTC | |
by Anonymous Monk on Jun 28, 2013 at 16:02 UTC | |
|
Re: Internal links in Excel
by tmaly (Monk) on Oct 01, 2008 at 14:34 UTC | |
|
Re: Internal links in Excel
by Anonymous Monk on Oct 01, 2008 at 12:08 UTC |