in reply to Re: Errors while parsing a specific type of Excel File.
in thread Errors while parsing a specific type of Excel File.

You can suppress the warnings by using the below code.

$SIG{'__WARN__'} = \&alarm_handler; # install signal handler to suppre +ss warnings
sub alarm_handler () { return; }