Convert Revision of XLSB to XLSM

Contents
[ ]

The following code sample shows you how to convert the XLSB file into XLSM format using Aspose.Cells for Python via .NET.

from aspose.cells import SaveFormat, Workbook
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
# The path to the documents directory.
dataDir = RunExamples.GetDataDir(".")
# Open workbook
workbook = Workbook(dataDir + "sample.xlsb")
# Save Workbook to XLSM format
workbook.save(dataDir + "output_out.xlsm", SaveFormat.XLSM)