Hi, our use case for Aspose.Cells is to simply convert an input file to a different format without any modification, like following:
public void convert(@NotNull File input, @NotNull File output, int saveFormat) throws …...Exception { LoadOptions loadOptions = new LoadOptions(); loadOptions...workbook = new Workbook(is, loadOptions); workbook.save(os, saveFormat);...