Is there a way to read comments/notes of a cell in an excel file with ParseExcel/ParseXLSX?

Viewed 105
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!

0 Answers
Related