in reply to Re^4: Error while reading .xls file
in thread Error while reading .xls file

Hi, I assume line 110 of your script is
for my $worksheet1 ( $workbook_data->worksheet(0) )
and the error message tells you that $workbook_data is undefined at that point. Which in turn means that
my $workbook_data = $parsedata->parse('test.xls');

did encounter some problem...

AppleFritter already told you how to find this out.