roho has asked for the wisdom of the Perl Monks concerning the following question:
I am running Strawberry Perl 5.24.1 on Windows 10 and using version 1.03 of Excel::Writer::XLSX.
#!/usr/bin/perl use strict; use warnings; use Excel::Writer::XLSX; my $workbook = Excel::Writer::XLSX->new( 'test.xlsx' ); my $worksheet = $workbook->add_worksheet("Sheet1"); my $format = $workbook->add_format(); $format->set_font_color( 'red' ); $worksheet->write( 'A1', 'test' ); $workbook->close() if defined $workbook;
"It's not how hard you work, it's how much you get done."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Unable to Write Spreadsheet Text in Color
by choroba (Cardinal) on Mar 13, 2020 at 01:22 UTC | |
by roho (Bishop) on Mar 13, 2020 at 01:39 UTC |