![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-perl)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/blob/master/LICENSE) ![CPAN](https://img.shields.io/cpan/v/AsposeCellsCloud-CellsApi) Aspose.Cells Cloud for Perl enables you to handle various aspects of Excel files, including cell data, styles, formulas, charts, pivot tables, data validation, comments, drawing objects, images, hyperlinks, and so on. Additionally, it supports operations such as splitting, merging, repairing, and converting to other compatible file formats. # Perl module for Aspose.Cells Cloud Enhance your Perl applications with the [Aspose.Cells Cloud](https://products.aspose.cloud/cells/perl) , enabling seamless integration with [Excel, ODS, CSV, Json and other spreadsheet document formats](https://docs.aspose.cloud/cells/supported-file-formats/). With its powerful APIs, developers can effortlessly read, convert, create, edit, and manipulate the contents of Excel documents without the need for any office software installed on the machine ## Manipulate Excel and other spreadsheet files in the Cloud - File Manipulation: Users can upload, download, delete, and manage Excel files stored in the cloud. - Formatting: Supports formatting of cells, fonts, colors, and alignment modes in Excel files to cater to users' specific requirements. - Data Processing: Powerful functions for data processing including reading, writing, modifying cell data, performing formula calculations, and formatting data. - Formula Calculation: Built-in formula engine handles complex formula calculations in Excel and returns accurate results. - Chart Manipulation: Users can create, edit, and delete charts from Excel files for data analysis and visualization needs. - Table Processing: Offers robust processing capabilities for various form operations such as creation, editing, formatting, and conversion, meeting diverse form processing needs. - Data Verification: Includes data verification function to set cell data type, range, uniqueness, ensuring data accuracy and integrity. - Batch Processing: Supports batch processing of multiple Excel documents, such as batch format conversion, data extraction, and style application.. - Import/Export: Facilitates importing data from various sources into spreadsheets and exporting spreadsheet data to other formats. - Security Management: Offers a range of security features like data encryption, access control, and permission management to safeguard the security and integrity of spreadsheet data. ## Feature & Enhancements in Version 24.12 Full list of issues covering all changes in this release: - Add the new remove duplicates api. - Add the new extract text API. - The pivot filter could not be created successfully. ## Support file format |**Format**|**Description**|**Load**|**Save**| | :- | :- | :- | :- | |[XLS](https://docs.fileformat.com/spreadsheet/xls/)|Excel 95/5.0 - 2003 Workbook.|√|√| |[XLSX](https://docs.fileformat.com/spreadsheet/xlsx/)|Office Open XML SpreadsheetML Workbook or template file, with or without macros.|√|√| |[XLSB](https://docs.fileformat.com/spreadsheet/xlsb/)|Excel Binary Workbook.|√|√| |[XLSM](https://docs.fileformat.com/spreadsheet/xlsm/)|Excel Macro-Enabled Workbook.|√|√| |[XLT](https://docs.fileformat.com/spreadsheet/xlt/)|Excel 97 - Excel 2003 Template.|√|√| |[XLTX](https://docs.fileformat.com/spreadsheet/xltx/)|Excel Template.|√|√| |[XLTM](https://docs.fileformat.com/spreadsheet/xltm/)|Excel Macro-Enabled Template.|√|√| |[XLAM](https://docs.fileformat.com/spreadsheet/xlam/)|An Excel Macro-Enabled Add-In file that's used to add new functions to Excel.| |√| |[CSV](https://docs.fileformat.com/spreadsheet/csv/)|CSV (Comma Separated Value) file.|√|√| |[TSV](https://docs.fileformat.com/spreadsheet/tsv/)|TSV (Tab-separated values) file.|√|√| |TabDelimited|Tab-delimited text file, same with TSV file.|√|√| |[TXT](https://docs.fileformat.com/word-processing/txt/)|Delimited plain text file.|√|√| |[HTML](https://docs.fileformat.com/web/html/)|HTML format.|√|√| |[MHTML](https://docs.fileformat.com/web/mhtml/)|MHTML file.|√|√| |[ODS](https://docs.fileformat.com/spreadsheet/ods/)|ODS (OpenDocument Spreadsheet).|√|√| |SpreadsheetML|Excel 2003 XML file.|√|√| |[Numbers](https://docs.fileformat.com/spreadsheet/numbers/)|The document is created by Apple's "Numbers" application which forms part of Apple's iWork office suite, a set of applications which run on the Mac OS X and iOS operating systems.|√|| |[JSON](https://docs.fileformat.com/web/json/)|JavaScript Object Notation|√|√| |[DIF](https://docs.fileformat.com/spreadsheet/dif/)|Data Interchange Format.| |√| |[PDF](https://docs.fileformat.com/pdf/)|Adobe Portable Document Format.| |√| |[XPS](https://docs.fileformat.com/page-description-language/xps/)|XML Paper Specification Format.| |√| |[SVG](https://docs.fileformat.com/page-description-language/svg/)|Scalable Vector Graphics Format.| |√| |[TIFF](https://docs.fileformat.com/image/tiff/)|Tagged Image File Format| |√| |[PNG](https://docs.fileformat.com/image/png/)|Portable Network Graphics Format| |√| |[BMP](https://docs.fileformat.com/image/bmp/)|Bitmap Image Format| |√| |[EMF](https://docs.fileformat.com/image/emf/)|Enhanced metafile Format| |√| |[JPEG](https://docs.fileformat.com/image/jpeg/)|JPEG is a type of image format that is saved using the method of lossy compression.| |√| |[GIF](https://docs.fileformat.com/image/gif/)|Graphical Interchange Format| |√| |[MARKDOWN](https://docs.fileformat.com/word-processing/md/)|Represents a markdown document.| |√| |[SXC](https://docs.fileformat.com/spreadsheet/sxc/)|An XML based format used by OpenOffice and StarOffice|√|√| |[FODS](https://docs.fileformat.com/spreadsheet/fods/)|This is an Open Document format stored as flat XML.|√|√| |[DOCX](https://docs.fileformat.com/word-processing/docx/)|A well-known format for Microsoft Word documents that is a combination of XML and binary files.||√| |[PPTX](https://docs.fileformat.com/presentation/pptx/)|The PPTX format is based on the Microsoft PowerPoint open XML presentation file format.||√| ## Quick Start Guide To begin with Aspose.Cells Cloud, here's what you need to do: 1. Sign up for an account at [Aspose for Cloud](https://dashboard.aspose.cloud/#/apps) to obtain your application details. 2. Install the Aspose.Cells Cloud Perl module from the [CPAN distribution](https://www.cpan.org/). 3. Use the conversion code provided below as a reference to add or modify your application. ## Convert an Excel File Using Perl ```perl use lib 'lib'; use strict; use warnings; use File::Slurp; use MIME::Base64; use AsposeCellsCloud::CellsApi; my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'CellsCloudClientId'}, client_secret => $ENV{'CellsCloudClientSecret'}); my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config)); my $remoteFolder = 'TestData/In'; my $localName = 'Book1.xlsx'; my $remoteName = 'Book1.xlsx'; my $upload_file_request = AsposeCellsCloud::Request::UploadFileRequest->new( 'UploadFiles'=>{ $localName => $localName } ,'path'=>$remoteFolder . '/' . $remoteName ); my $format = 'csv'; my $mapFiles = {}; $mapFiles->{$localName}= "TestData/".$localName ; my $request = AsposeCellsCloud::Request::PutConvertWorkbookRequest->new(); $request->{file} = $mapFiles; $request->{format} = $format; $instance->put_convert_workbook(request=> $request); ``` ## Aspose.Cells Cloud in Popular Languages | .NET | Java | PHP | Python | Ruby | Node.js | Android | Swift | GO | |---|---|---|---|---|---|---|---|---| | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-java) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-php) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-node) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-android) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-swift) | [GitHub](https://github.com/aspose-cells-cloud/aspose-cells-cloud-go) | | [NuGet](https://www.nuget.org/packages/Aspose.Cells-Cloud/) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud) | [Composer](https://packagist.org/packages/aspose/cells-sdk-php) | [PIP](https://pypi.org/project/asposecellscloud/) | [GEM](https://rubygems.org/gems/aspose_cells_cloud) | [NPM](https://www.npmjs.com/package/asposecellscloud) | [Maven](https://repository.aspose.cloud/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-cells-cloud-android) | [POD](https://cocoapods.org/pods/AsposeCellsCloud) | [GO](https://pkg.go.dev/github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20?tab=overview) | [Product Page](https://products.aspose.cloud/cells/perl) | [Documentation](https://docs.aspose.cloud/cells/) | [Live Demo](https://products.aspose.app/cells/family) | [API Reference](https://apireference.aspose.cloud/cells/) | [Code Samples](https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl) | [Blog](https://blog.aspose.cloud/category/cells/) | [Free Support](https://forum.aspose.cloud/c/cells) | [Free Trial](https://dashboard.aspose.cloud/#/apps) ## [Release history version](HistoryVersions.md)