PRODUCT_NAME_ALT

Merge XLSB to XLTM for Free in go

Use a free app or Go SDK to merge XLSB and XLTM, along with several popular formats from Microsoft® Excel.

Go Code for Merging XLSB Files into XLTM: A Complete Guide

// Converting XLSB to HTML
args := new(CellsSaveAsPostDocumentSaveAsOpts)
args.Name = file.XLSB
args.Newfilename = "file.HTML"
args.Folder = GetBaseTest().remoteFolder
response, httpResponse, err := GetBaseTest().CellsAPI.CellsSaveAsPostDocumentSaveAs(args)

// Converting HTML to XLTM
args := new(CellsSaveAsPostDocumentSaveAsOpts)
args.Name = file.HTML
args.Newfilename = "file.XLTM"
args.Folder = GetBaseTest().remoteFolder
response, httpResponse, err := GetBaseTest().CellsAPI.CellsSaveAsPostDocumentSaveAs(args)

How to Megre XLSB to XLTM in Cloud Apps

  1. Initialize WordsApi with Client Id, Client Secret, Base URL & API version
  2. Set requestDocument assign the local XLSB file name
  3. Set requestDocumentListDocumentEntriesFileReference and assign local XLTM file name
  4. Set requestDocumentListDocumentEntries and set file_reference, import_format_mode parameters
  5. Create DocumentEntryList instance and assing requestDocumentListDocumentEntries to document_entries parameter
  6. Call AppendDocumentOnlineRequest to merge XLSB file with XLTM document requestDocument and requestDocumentList
  7. Call WordsApi appendDocumentOnline with parameters

Get Started with Aspose.Total REST APIs

  1. Create an account at Dashboard to get free API quota & authorization details
  2. Get Aspose.Words and Aspose.Cells Cloud SDKs for Go source code from Aspose.Words GitHub and Aspose.Cells GitHub repos to compile/use the SDK yourself or head to the Releases for alternative download options.
  3. Also have a look at Swagger-based API Reference for Aspose.Words and Aspose.Cells to know more about the REST API.

FAQ

  • What is XLSB Format?
    XLSB file format specifies the Excel Binary File Format, which is a collection of records and structures that specify Excel workbook content. The content can include unstructured or semi-structured tables of numbers, text, or both numbers and text, formulas, external data connections, charts and images. Unlike XLSX (which is based on Open XML file format), the XLSB represents binary Excel workbook file. XLSB files can be read and written to faster which makes them useful for working with large files. XLSB is seldom used to store workbooks as XLSX (and previously XLS) are the most common user selected file formats for saving workbooks. It can be opened by Microsoft Office 2007 and above.
  • What is XLTM Format?
    The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled template files. XLTM files are similar to XLTX in structure other than that the later doesn’t support creating template files with macros. Such template files are used to generate and set the layout, formatting, and other settings along with the macros to facilitate creating similar XLSX files then.
  • How can I get started with Aspose.Total REST APIs?
    Quickstart not only guides through the initialization of Aspose.Total Cloud API, it also helps in installing the required libraries.
  • Where can I see the release notes for Aspose.Total Cloud API?
    Complete release notes can be reviewed at Aspose.Total Cloud Documentation.
  • Is it safe to merge XLSB to XLTM in the Cloud?
    Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
  • What file formats are supported by Aspose.Total Cloud API?
    Aspose.Total Cloud can merge file formats from any product family to any other product family to PDF, DOCX, XPS, image(TIFF, JPEG, PNG BMP), MD and more. Checkout the complete list of supported file formats.
  • I can not find the SDK for my favorite language. What should I do?
    Aspose.Total Cloud is also available as a Docker Container. Try using it with cURL in case your required SDK is not available yet.