in reply to Re^3: Spreadsheet::XLSX Cell Access
in thread Spreadsheet::XLSX Cell Access

An array of hashes is declared as a simple array:

my @pond;

Then to use it, one possible way is this:

$pond[$i]{$_} = 'foo';

But from what you have shown, you only need a single hash as follows:

$yield{$_} = 'bar';

Read the link that has been provided to you in an earler post.