use Spreadsheet::ParseExcel;
...
...
my $cell = $worksheet->get_cell($row,$column);
$cell_value = $name->value();
This gets the value stored in the cell. If I have comments/notes associated with this cell, how can I fetch it?
Thanks!
use Spreadsheet::ParseExcel;
...
...
my $cell = $worksheet->get_cell($row,$column);
$cell_value = $name->value();
This gets the value stored in the cell. If I have comments/notes associated with this cell, how can I fetch it?
Thanks!