in reply to Adding a new row in excel file
# append data to 'NAME' $excel->add_row('NAME',[qw/new row/]); [download]
# add a row into the middle $excel->add_row_at('Name of Worksheet',1,[qw/new row/]); [download]