// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java //Specify the load options LoadOptions opts = new LoadOptions(); //We do not want to load defined names opts.setLoadFilter(new LoadFilter(~LoadDataFilterOptions.DEFINED_NAMES)); //Load the workbook Workbook wb = new Workbook(srcDir + "sampleFilterDefinedNamesWhileLoadingWorkbook.xlsx", opts); //Save the output Excel file, it will break the formula in C1 wb.save("outputFilterDefinedNamesWhileLoadingWorkbook.xlsx");