I have an workbook which has multiple sheets within it. What I need is to process only the first sheet and dont need those remaining sheets. one can remove a sheet at particular index using,
workbook.removeSheetAt(sheetIndex);
Is there simpler any method to remove all sheets except one sheet. Or do I have to loop through the above method to remove sheet everytime.