PRODUCT_NAME_ALT

Merge XLTX to XLAM for Free in php

Use a free app or Php SDK to merge XLTX and XLAM, along with several popular formats from Microsoft® Excel.

Php Code for Merging XLTX Files into XLAM: A Complete Guide

// Converting XLTX to HTML
$cellsapi = new CellsApi($clientId, $clientSecret);
$saveOptionsCells = new SaveOptions();
$saveOptionsCells->SaveFormat = "XLTX";
$cellsApiResult = $cellsApi->cellsSaveAsPostDocumentSaveAs($file, $saveOptionsCells, $Newfile);
%!(EXTRA string=HTML)
// Converting HTML to XLAM
$cellsapi = new CellsApi($clientId, $clientSecret);
$saveOptionsCells = new SaveOptions();
$saveOptionsCells->SaveFormat = "HTML";
$cellsApiResult = $cellsApi->cellsSaveAsPostDocumentSaveAs($file, $saveOptionsCells, $Newfile);
%!(EXTRA string=XLAM)

How to Megre XLTX to XLAM in Cloud Apps

  1. Initialize WordsApi with Client Id, Client Secret, Base URL & API version
  2. Set requestDocument assign the local XLTX file name
  3. Set requestDocumentListDocumentEntriesFileReference and assign local XLAM 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 XLTX file with XLAM 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 Php 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 XLTX Format?
    Files with .xltx extension represent Microsoft Excel Template files that are based on the Office OpenXML file format specifications. It is used to create a standard template file that can be utilized to generate XLSX files that exhibit the same settings as specified in the XLTX file.
  • What is XLAM Format?
    XLAM is an Macro-Enabled Add-In file that is used to add new functions to spreadsheets. An Add-In is a supplemental program that runs additional code and provides additional functionality for spreadsheets. XLAM files are stored with the .xlam extension. XLAM files are XML-based files similar to XLSM and XLSX file formats and are saved with ZIP compression to reduce the overall file size.
  • 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 XLTX to XLAM 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.