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

138 Views Asked by At
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

There are 0 best solutions below