Dear Monks,
I have been trying to delete the unwanted sheets at the end of my perl code. It is not getting deleted. I searched this site and tried it in the same way. I am not getting any warnings or errors with -w enabled in the command line. Please help.
$Excel->{DisplayAlerts} = 0;
for($j=1;$j<9;$j++) {
$Book->Worksheets("TxPower$j")->Delete;
print "Deleting ...\n";
# $worksheet->Delete;
}