Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

Aspose.Cells Excel Merge Micro App

It allows various formats like Xlsx to PDF through command line or code integration, ensuring fast and accurate conversions.


NuGet | Product Page | Docs | Demos | Blog | Free Support | Temporary License | EULA



Aspose.Cells Micro Apps

Aspose.Cells Micro Applications offer advanced spreadsheet processing capabilities for end users.

Built upon the powerful Aspose.Cells .NET API.

Aspose.Cells Merger Micro Application

This application efficiently merges electronic spreadsheets (such as Excel), CSV, TSV, plain text files, and HTML documents.

Key Features

  • Supports a wide range of input and output file formats as per the Aspose.Cells supported file formats list;
  • Accessible through the command line or easily integrated into your C# code via the .NET Core 3.1 compatible API.

Licensing

While the Aspose.Cells Merger application is free to use, Aspose.Cells .NET requires a license. You can reuse your existing license within the application or evaluate it using Aspose.Cells .NET in trial mode.

System Requirements

  • .NET Core 3.1 installed on Windows, Linux, or MacOs;
  • Aspose.Cells Merger application installed.

Installation

To install the application, run the following command:

dotnet tool install --global Aspose.Cells.Merger

Usage

Using the Command Line:

Aspose.Cells.Merger --input "input1.xlsx"+"input2.xlsx" --output "output.pdf"

Using Code Integration:

var cellsMergerOptions = new CellsMergerOptions
{
    InputPaths = new[] { "input1.xlsx", "input2.xlsx" },
    OutputPath = "output.pdf"
};

// Optionally set the path to your Aspose.Cells .NET license file via parameters
if (isLicensed)
{
    cellsMergerOptions.LicenseFile = "Aspose.Total.Product.Family.lic";
}

var cellsMerger = new CellsMerger(cellsMergerOptions);
cellsMerger.Merge();