<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: AsposeCells</title>
    <description>The latest articles on DEV Community by AsposeCells (@asposecells).</description>
    <link>https://dev.to/asposecells</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F104052%2Fccaabfec-9435-4ef9-967e-c6a1f382d56e.jpg</url>
      <title>DEV Community: AsposeCells</title>
      <link>https://dev.to/asposecells</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/asposecells"/>
    <language>en</language>
    <item>
      <title>Format Excel Cell Numbers to Currency in C#.NET</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Fri, 23 Nov 2018 18:21:43 +0000</pubDate>
      <link>https://dev.to/asposecells/format-excel-cell-numbers-to-currency-in-cnet-683</link>
      <guid>https://dev.to/asposecells/format-excel-cell-numbers-to-currency-in-cnet-683</guid>
      <description>&lt;p&gt;Microsoft Excel supports wide range of &lt;em&gt;Number Formats&lt;/em&gt;. One of these number formats is &lt;em&gt;Currency&lt;/em&gt;. If the cell value contains number, then you can apply currency format by specifying currency symbol and decimal places. Similarly, you can format Excel cell numbers to currency using &lt;a href="https://products.aspose.com/cells/net"&gt;Aspose.Cells for .NET&lt;/a&gt; with ease. In order to perform its operation, Aspose.Cells does not need Microsoft Excel or on any sort of Microsoft Office Automation, VBA (&lt;em&gt;Visual Basic for Applications&lt;/em&gt;), VSTO (&lt;em&gt;Visual Studio Tools for Office&lt;/em&gt;) etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Article Description&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The purpose of this article is to explain how developers can format Excel cell numbers to currency in C#.NET. Alternatively, you can use any .NET Framework supported language e.g. VB.NET etc.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports all .NET frameworks e.g. .NET 2.0, .NET 3.5, .NET 4.0, .NET 7.0, .NET Core, .NET Standard 2.0, Xamarin etc. It is also available in other platforms e.g. Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs.&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Licensing&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Aspose.Cells is paid or commercial api, so it is not free or open source. Without license, it will work in evaluation mode with some limitations. If you want to test Aspose.Cells without evaluation version limitations, you can also request a &lt;em&gt;30 Day Temporary License&lt;/em&gt;. For more information, please go through &lt;a href="https://docs.aspose.com/display/cellsnet/Licensing"&gt;Licensing&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Format Excel Cell Numbers to Currency using Microsoft Excel
&lt;/h1&gt;

&lt;p&gt;You can format Excel cell numbers to currency using Microsoft Excel by performing these steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;Right Click&lt;/em&gt; the cell that contains some numeric value.&lt;/li&gt;
&lt;li&gt;Click &lt;em&gt;Format Cells…&lt;/em&gt; from the context menu as shown in snapshot below.&lt;/li&gt;
&lt;li&gt;Select &lt;em&gt;Currency&lt;/em&gt; from &lt;em&gt;Number Category&lt;/em&gt; and press &lt;em&gt;OK&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--A0WaQXit--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Format-Excel-Cell-Numbers-to-Currency/Format-Excel-Cell-Numbers-to-Currency-Microsoft-Excel.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--A0WaQXit--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Format-Excel-Cell-Numbers-to-Currency/Format-Excel-Cell-Numbers-to-Currency-Microsoft-Excel.png" alt="Format Excel Cell Numbers to Currency using Microsoft Excel." title="Format Excel Cell Numbers to Currency using Microsoft Excel."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Currency Custom Number Format Strings of Cell
&lt;/h1&gt;

&lt;p&gt;You can use various types of currency custom number format strings to display currencies e.g. Dollar, Yuan, Pound, Euro etc. and many others.&lt;/p&gt;

&lt;h2&gt;
  
  
  Dollar
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"$"#,##0.00
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Yaun
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[$¥-804]#,##0.00
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Pound
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[$£-809]#,##0.00
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h2&gt;
  
  
  Euro
&lt;/h2&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#,##0.00[$€-40B]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h1&gt;
  
  
  Format Excel Cell Numbers to Currency using Aspose.Cells
&lt;/h1&gt;

&lt;p&gt;In the next few sections, we will learn how to use Aspose.Cells API to format Excel cell numbers to currency.&lt;/p&gt;
&lt;h1&gt;
  
  
  Sample Input Microsoft Excel Document
&lt;/h1&gt;

&lt;p&gt;For demonstration, we will use the following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Format-Excel-Cell-Numbers-to-Currency/SampleFormatExcelCellNumbersToCurrency.xlsx"&gt;sample input Microsoft Excel document&lt;/a&gt; that contains some numbers in cells G3, G4, G5 and G6. We will apply currency format i.e. Dollar, Yuan, Pound, Euro on these cells respectively.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9bDnxV4G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Format-Excel-Cell-Numbers-to-Currency/Input-Excel-File-Format-Excel-Cell-Numbers-To-Currency.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9bDnxV4G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Format-Excel-Cell-Numbers-to-Currency/Input-Excel-File-Format-Excel-Cell-Numbers-To-Currency.png" alt="Currency formats will be applied on Input Excel file Cells using Aspose.Cells API." title="Currency formats will be applied on Input Excel file Cells using Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h1&gt;
  
  
  Sample Code
&lt;/h1&gt;

&lt;p&gt;The following sample code formats Excel cells i.e. G3, G4, G5 and G6 with currency formats i.e. Dollar, Yuan, Pound, Euro respectively by performing these steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Load the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Format-Excel-Cell-Numbers-to-Currency/SampleFormatExcelCellNumbersToCurrency.xlsx"&gt;input Excel file&lt;/a&gt; inside the &lt;em&gt;Aspose.Cells.Workbook&lt;/em&gt; object and access the first worksheet.&lt;/li&gt;
&lt;li&gt;Access first cell i.e. G3 and apply currency format using the &lt;em&gt;Style.Custom&lt;/em&gt; property.&lt;/li&gt;
&lt;li&gt;Repeat the second step for cell G4, G5 and G6 with further currency formats.&lt;/li&gt;
&lt;li&gt;Save the &lt;em&gt;Aspose.Cells.Workbook&lt;/em&gt; object in XLSX format. You can also save it to XLS or other Excel formats as per your needs.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;



&lt;h1&gt;
  
  
  Output Microsoft Excel XLSX by Aspose.Cells after applying Currency formats
&lt;/h1&gt;

&lt;p&gt;The following snapshot shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Format-Excel-Cell-Numbers-to-Currency/OutputFormatExcelCellNumbersToCurrency.xlsx"&gt;Output Microsoft Excel XLSX by Aspose.Cells&lt;/a&gt; after applying currency formats on the cells G3, G4, G5 and G6. Similarly, you can apply all sorts of currency formats on Excel cells using Aspose.Cells API.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RU_LV6ON--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Format-Excel-Cell-Numbers-to-Currency/Currency-Format-Applied-To-Excel-Cells-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RU_LV6ON--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Format-Excel-Cell-Numbers-to-Currency/Currency-Format-Applied-To-Excel-Cells-Aspose.Cells-API.png" alt="Currency formats applied on Excel cells using Aspose.Cells API." title="Currency formats applied on Excel cells using Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>excel</category>
      <category>currency</category>
      <category>format</category>
    </item>
    <item>
      <title>Convert Microsoft Excel XLS to XLSX in Java</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Fri, 16 Nov 2018 13:21:44 +0000</pubDate>
      <link>https://dev.to/asposecells/convert-microsoft-excel-xls-to-xlsx-in-java-ofi</link>
      <guid>https://dev.to/asposecells/convert-microsoft-excel-xls-to-xlsx-in-java-ofi</guid>
      <description>&lt;p&gt;XLS is an old but widely used Microsoft Excel format. It is a binary file format and known as &lt;em&gt;Binary Interchange File Format (BIFF)&lt;/em&gt;. Microsoft Excel still supports XLS format for backward compatibility but since it is an old format, many new features are not supported inside it. For that reason, XLS format is often converted to XLSX format which is a newer Open Office XML-based format and supports all new features of Microsoft Excel.&lt;/p&gt;

&lt;p&gt;You can convert XLS to XLSX manually using Microsoft Excel 2007 or later versions e.g. Microsoft Excel 2016 etc. or programmatically using &lt;a href="https://products.aspose.com/cells/java"&gt;Aspose.Cells for Java&lt;/a&gt; API with few lines of code. In order to perform its operations, Aspose.Cells does not depend on Microsoft Excel or on any sort of Microsoft Office Automation, VBA (&lt;em&gt;Visual Basic for Applications&lt;/em&gt;), VSTO (&lt;em&gt;Visual Studio Tools for Office&lt;/em&gt;) etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Article Description&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The purpose of this article is to explain how developers can convert Microsoft Excel XLS to XLSX format in Java.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports various platforms including Java, .NET, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Maximum Number of Columns and Rows in XLS and XLSX
&lt;/h1&gt;

&lt;p&gt;XLS format supports&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;65,536 Rows.&lt;/li&gt;
&lt;li&gt;256 Columns.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;XLSX format supports&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1,048,576 Rows.&lt;/li&gt;
&lt;li&gt;16,384 Columns.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Sample Input Microsoft Excel XLS Document
&lt;/h1&gt;

&lt;p&gt;You can convert any XLS document to XLSX using Aspose.Cells API. For illustration, we will use the following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-Microsoft-Excel-XLS-to-XLSX/SampleConvertMicrosoftExcelXLSToXLSX.xls"&gt;sample input Microsoft Excel XLS document&lt;/a&gt; that contains textual and numerical formatted data about some companies. Whenever, you will open XLS document in Microsoft Excel, it will show &lt;em&gt;Compatibility Mode&lt;/em&gt; as indicated by &lt;em&gt;Red Arrow&lt;/em&gt; in the following snapshot.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Icr5Rl4P--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Convert-Microsoft-Excel-XLS-to-XLSX/Input-Convert-XLS-to-XLSX-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Icr5Rl4P--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Convert-Microsoft-Excel-XLS-to-XLSX/Input-Convert-XLS-to-XLSX-using-Aspose.Cells-API.png" alt="Sample Microsoft Excel XLS document to be converted to XLSX format using Aspose.Cells API." title="Sample Microsoft Excel XLS document to be converted to XLSX format using Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Sample Code
&lt;/h1&gt;

&lt;p&gt;The following sample code converts XLS to XLSX by performing these steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Load the input Microsoft Excel XLS document in &lt;em&gt;com.aspose.cells.Workbook&lt;/em&gt; object.&lt;/li&gt;
&lt;li&gt;Save the &lt;em&gt;com.aspose.cells.Workbook&lt;/em&gt; object in XLSX format.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;h1&gt;
  
  
  Output Microsoft Excel XLSX by Aspose.Cells
&lt;/h1&gt;

&lt;p&gt;The following snapshot shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-Microsoft-Excel-XLS-to-XLSX/OutputConvertMicrosoftExcelXLSToXLSX.xlsx"&gt;Converted or Output Microsoft Excel XLSX file by Aspose.Cells&lt;/a&gt; with the code given above. As you can see, the output XLSX file is exactly similar to XLS file. Similarly, you can convert any XLS file to XLSX with Aspose.Cells API easily.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Ourlaptr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Convert-Microsoft-Excel-XLS-to-XLSX/Output-Convert-XLS-to-XLSX-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Ourlaptr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Convert-Microsoft-Excel-XLS-to-XLSX/Output-Convert-XLS-to-XLSX-using-Aspose.Cells-API.png" alt="Output - Convert XLS to XLSX using Aspose.Cells API." title="Output - Convert XLS to XLSX using Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>convert</category>
      <category>xls</category>
      <category>xlsx</category>
    </item>
    <item>
      <title>Create Microsoft Excel Column Chart in C++</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Sat, 03 Nov 2018 15:44:56 +0000</pubDate>
      <link>https://dev.to/asposecells/create-microsoft-excel-column-chart-in-c-24g0</link>
      <guid>https://dev.to/asposecells/create-microsoft-excel-column-chart-in-c-24g0</guid>
      <description>&lt;p&gt;Chart is a graphical representation of data that enables user to easily understand the large quantity of data and relationships between parts of data. There are many types of charts available in Microsoft Excel and almost all of them are supported by &lt;a href="https://products.aspose.com/cells/cpp"&gt;Aspose.Cells for C++&lt;/a&gt;. As a matter of fact, Aspose.Cells can be used to create, edit and manipulate Excel spreadsheets almost in any platform without any need to install Microsoft Excel or without using any sort of Microsoft Office automation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Article Description&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The purpose of this article is to explain how developers can create Microsoft Excel Column Chart in C++.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells"&gt;Aspose.Cells&lt;/a&gt; API supports number of platform e.g. C++, .NET, Java, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Types of Column Charts
&lt;/h1&gt;

&lt;p&gt;There are various types of Column charts, some of them are listed below.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Column&lt;/li&gt;
&lt;li&gt;Column Stacked&lt;/li&gt;
&lt;li&gt;Column 100% Stacked&lt;/li&gt;
&lt;li&gt;Column 3D&lt;/li&gt;
&lt;li&gt;Column 3D Clustered&lt;/li&gt;
&lt;li&gt;Column 3D Stacked&lt;/li&gt;
&lt;li&gt;Column 3D 100% Stacked&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Sample Input Microsoft Excel Document
&lt;/h1&gt;

&lt;p&gt;For demonstration, we will use the following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Create-Microsoft-Excel-Column-Chart/sampleCreateMicrosoftExcelColumnChart.xlsx"&gt;sample input Microsoft Excel document&lt;/a&gt; that contains the chart data. Here, column A contains the category axis data and other columns B, C and D contain chart series data.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--X2VWa5or--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Create-Microsoft-Excel-Column-Chart/Input-Microsoft-Excel-Document-containing-Chart-Data.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--X2VWa5or--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Create-Microsoft-Excel-Column-Chart/Input-Microsoft-Excel-Document-containing-Chart-Data.png" alt="Sample Input Microsoft Excel Document containing Chart Data." title="Sample Input Microsoft Excel Document containing Chart Data."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Sample Code
&lt;/h1&gt;

&lt;p&gt;The following sample code creates Microsoft Excel Column Chart by performing these steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Load &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Create-Microsoft-Excel-Column-Chart/sampleCreateMicrosoftExcelColumnChart.xlsx"&gt;sample input Microsoft Excel document&lt;/a&gt; containing the chart data.&lt;/li&gt;
&lt;li&gt;Create Column chart with specified dimensions.&lt;/li&gt;
&lt;li&gt;Set the chart title and format it.&lt;/li&gt;
&lt;li&gt;Add three vertical series, set their names and fill colors.&lt;/li&gt;
&lt;li&gt;Format various chart items e.g. plot area, value axis, category axis, major tick marks etc.&lt;/li&gt;
&lt;li&gt;Save the workbook in XLSX format. You can also save it in other formats e.g. XLS, XLSB, XLSM etc.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;h1&gt;
  
  
  Output Microsoft Excel Column Chart by Aspose.Cells
&lt;/h1&gt;

&lt;p&gt;The following snapshot shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Create-Microsoft-Excel-Column-Chart/outputCreateMicrosoftExcelColumnChart.xlsx"&gt;Output Microsoft Excel Column Chart generated by Aspose.Cells&lt;/a&gt; with the code given above. Similarly, you can create all sorts of Column charts with Aspose.Cells API easily.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--kF9BNPr9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Create-Microsoft-Excel-Column-Chart/Microsoft-Excel-Column-Chart-created-by-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--kF9BNPr9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Create-Microsoft-Excel-Column-Chart/Microsoft-Excel-Column-Chart-created-by-Aspose.Cells-API.png" alt="Microsoft Excel Column Chart created by Aspose.Cells API." title="Microsoft Excel Column Chart created by Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>excel</category>
      <category>column</category>
      <category>chart</category>
      <category>series</category>
    </item>
    <item>
      <title>Use AutoFilter to Filter Excel Data in C#.NET</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Fri, 26 Oct 2018 15:51:04 +0000</pubDate>
      <link>https://dev.to/asposecells/use-autofilter-to-filter-excel-data-in-c-20lf</link>
      <guid>https://dev.to/asposecells/use-autofilter-to-filter-excel-data-in-c-20lf</guid>
      <description>&lt;p&gt;Filtering data based on criteria is a very important feature. It helps the user to understand and analyze data easily. You can use the auto filter feature of Microsoft Excel to find, show or hide values in a single or multiple columns based on the choices that you select from list. When the filter is applied, then all the rows that do not meet your criteria are hidden completely.&lt;/p&gt;

&lt;p&gt;You can use &lt;a href="https://products.aspose.com/cells/net"&gt;Aspose.Cells for .NET&lt;/a&gt; to apply filter on your Excel data programmatically in C# easily with few lines of code. It can also be used to perform wide range of functions on Excel documents e.g. you can create, edit and manipulate Excel spreadsheets in any platform without any need to install Microsoft Excel or without using any sort of Microsoft Office automation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Article Description&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The purpose of this article is to explain how developers can use AutoFilter to filter Excel data in C# or in any .NET Framework supported language e.g. VB.NET etc.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports all .NET frameworks e.g. .NET 2.0, .NET 3.5, .NET 4.0, .NET 7.0, .NET Core, .NET Standard 2.0, Xamarin etc. It is also available in other platforms e.g. Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs.&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Filter Data using AutoFilter in Microsoft Excel
&lt;/h1&gt;

&lt;p&gt;Please do the following steps to filter data using AutoFilter in Microsoft Excel.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Select the columns and click &lt;em&gt;Data &amp;gt; Filter&lt;/em&gt; button inside the &lt;em&gt;Sort &amp;amp; Filter&lt;/em&gt; section.&lt;/li&gt;
&lt;li&gt;Click the AutoFilter dropdown, select your choices from list and press OK.&lt;/li&gt;
&lt;li&gt;All the rows that do not match your criteria will be filtered out. Please see this snapshot for detail.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GOWeGObS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Use-AutoFilter-to-Filter-Excel-Data/Apply-AutoFilter-Microsoft-Excel-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GOWeGObS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Use-AutoFilter-to-Filter-Excel-Data/Apply-AutoFilter-Microsoft-Excel-Aspose.Cells-API.png" alt="Apply AutoFilter in Microsoft Excel which can also be done with Aspose.Cells API programmatically." title="Apply AutoFilter in Microsoft Excel which can also be done with Aspose.Cells API programmatically."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Filter Data using AutoFilter in Aspose.Cells
&lt;/h1&gt;

&lt;p&gt;This section explains how to filter Excel data using AutoFilter with Aspose.Cells API.&lt;/p&gt;

&lt;h1&gt;
  
  
  Sample Input Microsoft Excel Document
&lt;/h1&gt;

&lt;p&gt;For demonstration, we will use the following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Use-AutoFilter-to-Filter-Excel-Data/sampleUseAutoFilterToFilterExcelData.xlsx"&gt;sample input Microsoft Excel document&lt;/a&gt; that contains some data in four columns. We will apply AutoFilter on &lt;em&gt;Vehicle&lt;/em&gt; and &lt;em&gt;Color&lt;/em&gt; columns. Once, rows are filtered out, some of them will become hidden and the &lt;strong&gt;Grand Total&lt;/strong&gt; for &lt;em&gt;Qty1&lt;/em&gt; and &lt;em&gt;Qty2&lt;/em&gt; columns shown inside the red lines will be modified accordingly.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tM0W4FR5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Use-AutoFilter-to-Filter-Excel-Data/Sample-Microsoft-Excel-Apply-AutoFilter-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tM0W4FR5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Use-AutoFilter-to-Filter-Excel-Data/Sample-Microsoft-Excel-Apply-AutoFilter-Aspose.Cells-API.png" alt="Sample Input Microsoft Excel Document containing Data for applying AutoFilter using Aspose.Cells API." title="Sample Input Microsoft Excel Document containing Data for applying AutoFilter using Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Sample Code
&lt;/h1&gt;

&lt;p&gt;The following sample code applies AutoFilter on Microsoft Excel data by performing these steps&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Load &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Use-AutoFilter-to-Filter-Excel-Data/sampleUseAutoFilterToFilterExcelData.xlsx"&gt;sample input Microsoft Excel document&lt;/a&gt; containing the sample data for auto filter.&lt;/li&gt;
&lt;li&gt;Apply auto filter to range.&lt;/li&gt;
&lt;li&gt;Adds two filters to first column.&lt;/li&gt;
&lt;li&gt;Refresh the auto filter.&lt;/li&gt;
&lt;li&gt;Adds another two filters to second column.&lt;/li&gt;
&lt;li&gt;Refresh the auto filter.&lt;/li&gt;
&lt;li&gt;Save the workbook in XLSX format. You can also save it in other formats e.g. XLS, XLSB, XLSM etc.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;h1&gt;
  
  
  Output Microsoft Excel Document by Aspose.Cells after applying AutoFilter
&lt;/h1&gt;

&lt;p&gt;The following snapshot shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Use-AutoFilter-to-Filter-Excel-Data/outputUseAutoFilterToFilterExcelData.xlsx"&gt;Output Microsoft Excel Document generated by Aspose.Cells&lt;/a&gt; after applying AutoFilter with the code given above. &lt;em&gt;As you can see, it now shows the filtered rows and new values of &lt;strong&gt;Grand Total&lt;/strong&gt; displayed inside the red lines.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vqOk2Pxa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Use-AutoFilter-to-Filter-Excel-Data/Output-Microsoft-Excel-Apply-AutoFilter-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vqOk2Pxa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Use-AutoFilter-to-Filter-Excel-Data/Output-Microsoft-Excel-Apply-AutoFilter-Aspose.Cells-API.png" alt="Output Microsoft Excel Document by Aspose.Cells API after applying AutoFilter." title="Output Microsoft Excel Document by Aspose.Cells API after applying AutoFilter."&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>excel</category>
      <category>autofilter</category>
      <category>filter</category>
      <category>criteria</category>
    </item>
    <item>
      <title>Apply Cell Borders on Excel Worksheet Cells in Java</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Sat, 13 Oct 2018 07:15:54 +0000</pubDate>
      <link>https://dev.to/asposecells/apply-cell-borders-on-excel-worksheet-cells-in-java-2o05</link>
      <guid>https://dev.to/asposecells/apply-cell-borders-on-excel-worksheet-cells-in-java-2o05</guid>
      <description>&lt;p&gt;Microsoft Excel offers various types of built-in borders that can be applied to a cell or range of cells inside the worksheet. Excel cell border consists of two components i.e. line style and color. Since, there are number of line styles available in Microsoft Excel, user can also create custom borders. &lt;a href="https://products.aspose.com/cells/java"&gt;Aspose.Cells for Java&lt;/a&gt; API can be used to create any type of border, be it built-in border or custom border with ease. Besides, it can be used to create, edit and manipulate Excel spreadsheets almost in any platform without any need to install Microsoft Excel or without using any sort of Microsoft Office automation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Article Description&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The purpose of this article is to explain how developers can apply cell borders on Excel worksheet cells in Java.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports various platforms including Java, .NET, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs.&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Types of Built-in Borders
&lt;/h1&gt;

&lt;p&gt;Following are the types of built-in borders in Microsoft Excel that you can apply to cell.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Top&lt;/li&gt;
&lt;li&gt;Bottom&lt;/li&gt;
&lt;li&gt;Left&lt;/li&gt;
&lt;li&gt;Right&lt;/li&gt;
&lt;li&gt;Diagonal Up&lt;/li&gt;
&lt;li&gt;Diagonal Down&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Cell Border Types To Create Custom Borders
&lt;/h1&gt;

&lt;p&gt;By changing line styles, you can create custom borders. Some of these line styles are mentioned below. Please also see the snapshot given below that displays line styles in Microsoft Excel Border GUI.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;None&lt;/li&gt;
&lt;li&gt;Medium&lt;/li&gt;
&lt;li&gt;Hair&lt;/li&gt;
&lt;li&gt;Thick&lt;/li&gt;
&lt;li&gt;Thin&lt;/li&gt;
&lt;li&gt;Dashed&lt;/li&gt;
&lt;li&gt;Dotted&lt;/li&gt;
&lt;li&gt;Dash Dotted&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Border Line Styles in Microsoft Excel represented by CellBorderType in Aspose.Cells API.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8kIccGhF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Apply-Cell-Borders-on-Excel-Worksheet-Cells/Border-Line-Styles-Microsoft-Excel-Border-Aspose.Cells.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8kIccGhF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Apply-Cell-Borders-on-Excel-Worksheet-Cells/Border-Line-Styles-Microsoft-Excel-Border-Aspose.Cells.png" alt="Border Line Styles in Microsoft Excel represented by CellBorderType in Aspose.Cells API." title="Border Line Styles in Microsoft Excel represented by CellBorderType in Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Set Border of the Cell using Aspose.Cells API
&lt;/h1&gt;

&lt;p&gt;All of the border types can be accessed using the &lt;em&gt;BorderType&lt;/em&gt; enumeration. Its values are as follows&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;BorderType.TOP_BORDER&lt;/li&gt;
&lt;li&gt;BorderType.BOTTOM_BORDER&lt;/li&gt;
&lt;li&gt;BorderType.LEFT_BORDER&lt;/li&gt;
&lt;li&gt;BorderType.RIGHT_BORDER&lt;/li&gt;
&lt;li&gt;BorderType.DIAGONAL_UP&lt;/li&gt;
&lt;li&gt;BorderType.DIAGONAL_DOWN&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The following code accesses the top border and sets its line style and color. Similarly, you can work with any border using the &lt;em&gt;BorderType&lt;/em&gt; enumeration.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight csharp"&gt;&lt;code&gt;
&lt;span class="c1"&gt;// Set Top Border of Cell. Access cell object.&lt;/span&gt;
&lt;span class="n"&gt;Cell&lt;/span&gt; &lt;span class="n"&gt;cell&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;ws&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Cells&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;"B6"&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;

&lt;span class="c1"&gt;// Access cell style.&lt;/span&gt;
&lt;span class="n"&gt;Style&lt;/span&gt; &lt;span class="n"&gt;style&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cell&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;GetStyle&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="c1"&gt;// Access top border.&lt;/span&gt;
&lt;span class="n"&gt;Border&lt;/span&gt; &lt;span class="n"&gt;topBorder&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Borders&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;BorderType&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;TopBorder&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;

&lt;span class="c1"&gt;// Set the line style of the top border.&lt;/span&gt;
&lt;span class="n"&gt;topBorder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;LineStyle&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;CellBorderType&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Thick&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;// Set the color of the top border.&lt;/span&gt;
&lt;span class="n"&gt;topBorder&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Color&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;Color&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Red&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;// Set the cell style.&lt;/span&gt;
&lt;span class="n"&gt;cell&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;SetStyle&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;style&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;h1&gt;
  
  
  Sample Code
&lt;/h1&gt;

&lt;p&gt;The following sample code applies cell borders on Excel worksheet cells by performing these steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create empty workbook and set its default style.&lt;/li&gt;
&lt;li&gt;Add values and format cells B3, B6, B9, D3, D6, D9, F6. Also set the borders on them.&lt;/li&gt;
&lt;li&gt;Set Left border.&lt;/li&gt;
&lt;li&gt;Set Right border.&lt;/li&gt;
&lt;li&gt;Set Top border.&lt;/li&gt;
&lt;li&gt;Set Bottom border.&lt;/li&gt;
&lt;li&gt;Set Diagonal Up border.&lt;/li&gt;
&lt;li&gt;Set Diagonal Down border.&lt;/li&gt;
&lt;li&gt;Set All borders.&lt;/li&gt;
&lt;li&gt;Save the workbook in XLSX format. You can also save it in other formats e.g. XLS, XLSB, XLSM etc.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;



&lt;h1&gt;
  
  
  Output Microsoft Excel Cell Borders By Aspose.Cells
&lt;/h1&gt;

&lt;p&gt;The following snapshot shows &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Apply-Cell-Borders-on-Excel-Worksheet-Cells/outputApplyCellBordersOnExcelWorksheetCells.xlsx"&gt;Output Microsoft Excel Cell Borders generated by Aspose.Cells&lt;/a&gt; with the code given above. Similarly, you can create all sorts of built-in and custom borders easily with Aspose.Cells API.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Cell Borders, Left, Right, Up, Bottom, Diagonal Up and Down created by Aspose.Cells API.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bxpCLZzu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Apply-Cell-Borders-on-Excel-Worksheet-Cells/Cell-Borders-Applied-Microsoft-Excel-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bxpCLZzu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Apply-Cell-Borders-on-Excel-Worksheet-Cells/Cell-Borders-Applied-Microsoft-Excel-Aspose.Cells-API.png" alt="Excel Cell Borders, Left, Right, Up, Bottom, Diagonal Up and Down created by Aspose.Cells API." title="Excel Cell Borders, Left, Right, Up, Bottom, Diagonal Up and Down created by Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>excel</category>
      <category>cell</category>
      <category>border</category>
      <category>diagonal</category>
    </item>
    <item>
      <title>Create Microsoft Excel Line Chart in C#.NET</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Sat, 06 Oct 2018 14:29:59 +0000</pubDate>
      <link>https://dev.to/asposecells/create-microsoft-excel-line-chart-in-c-2kh2</link>
      <guid>https://dev.to/asposecells/create-microsoft-excel-line-chart-in-c-2kh2</guid>
      <description>&lt;p&gt;Chart is a graphical representation of data that enables user to easily understand the large quantity of data and relationships between parts of data. There are many types of charts available in Microsoft Excel and almost all of them are supported by &lt;a href="https://products.aspose.com/cells/net" rel="noopener noreferrer"&gt;Aspose.Cells for .NET&lt;/a&gt;. Aspose.Cells can be used to create, edit and manipulate Excel spreadsheets almost in any platform without any need to install Microsoft Excel or without using any sort of Microsoft Office automation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Article Description&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The purpose of this article is to explain how developers can create Microsoft Excel Line Chart in C#.NET. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Supported Platforms&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/" rel="noopener noreferrer"&gt;Aspose.Cells&lt;/a&gt; API supports all .NET frameworks e.g. .NET 2.0, .NET 3.5, .NET 4.0, .NET 7.0, .NET Core, .NET Standard 2.0, Xamarin etc. It is also available in other platforms e.g. Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells" rel="noopener noreferrer"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs.&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Types of Line Charts
&lt;/h1&gt;

&lt;p&gt;There are various types of Line charts, some of them are listed below.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Line&lt;/li&gt;
&lt;li&gt;Line Stacked&lt;/li&gt;
&lt;li&gt;Line 100% Stacked&lt;/li&gt;
&lt;li&gt;Line with Data Markers&lt;/li&gt;
&lt;li&gt;Line Stacked with Data Markers&lt;/li&gt;
&lt;li&gt;Line 100% Stacked with Data Markers&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Sample Input Microsoft Excel Document
&lt;/h1&gt;

&lt;p&gt;For demonstration, we will use the following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Create-Microsoft-Excel-Line-Chart/sampleCreateMicrosoftExcelLineChart.xlsx" rel="noopener noreferrer"&gt;sample input Microsoft Excel document&lt;/a&gt; that contains the chart data. Here, column A contains the category axis data and other columns B, C and D contain chart series data.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Sample Input Microsoft Excel Document containing Chart Data.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FCreate-Microsoft-Excel-Line-Chart%2FInput-Microsoft-Excel-Document-containing-Chart-Data.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FCreate-Microsoft-Excel-Line-Chart%2FInput-Microsoft-Excel-Document-containing-Chart-Data.png" title="Sample Input Microsoft Excel Document containing Chart Data." alt="Sample Input Microsoft Excel Document containing Chart Data."&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Sample Code
&lt;/h1&gt;

&lt;p&gt;The following sample code creates Microsoft Excel Line Chart by performing these steps.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Load &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Create-Microsoft-Excel-Line-Chart/sampleCreateMicrosoftExcelLineChart.xlsx" rel="noopener noreferrer"&gt;sample input Microsoft Excel document&lt;/a&gt; containing the chart data.&lt;/li&gt;
&lt;li&gt;Create Line chart with specified dimensions.&lt;/li&gt;
&lt;li&gt;Apply the two color gradient on the chart area.&lt;/li&gt;
&lt;li&gt;Set the chart title and format it.&lt;/li&gt;
&lt;li&gt;Add three vertical series, set their names and line weights.&lt;/li&gt;
&lt;li&gt;Format various chart items e.g. plot area, value axis, category axis, major tick marks etc.&lt;/li&gt;
&lt;li&gt;Save the workbook in XLSX format. You can also save it in other formats e.g. XLS, XLSB, XLSM etc.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;h1&gt;
  
  
  Output Microsoft Excel Line Chart by Aspose.Cells
&lt;/h1&gt;

&lt;p&gt;The following snapshot shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Create-Microsoft-Excel-Line-Chart/outputCreateMicrosoftExcelLineChart.xlsx" rel="noopener noreferrer"&gt;Output Microsoft Excel Line Chart generated by Aspose.Cells&lt;/a&gt; with the code given above. Similarly, you can create all sorts of Line charts with Aspose.Cells API easily.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Microsoft Excel Line Chart created by Aspose.Cells API.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FCreate-Microsoft-Excel-Line-Chart%2FMicrosoft-Excel-Line-Chart-created-by-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FCreate-Microsoft-Excel-Line-Chart%2FMicrosoft-Excel-Line-Chart-created-by-Aspose.Cells-API.png" title="Microsoft Excel Line Chart created by Aspose.Cells API." alt="Microsoft Excel Line Chart created by Aspose.Cells API."&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>excel</category>
      <category>line</category>
      <category>chart</category>
      <category>series</category>
    </item>
    <item>
      <title>Convert TSV to PDF in C++</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Fri, 05 Oct 2018 10:19:37 +0000</pubDate>
      <link>https://dev.to/asposecells/convert-tsv-to-pdf-in-c-k8f</link>
      <guid>https://dev.to/asposecells/convert-tsv-to-pdf-in-c-k8f</guid>
      <description>&lt;p&gt;Aspose.Cells is capable of loading TSV file and converting it to PDF with diverse options. In this article, we will explain how C++ developers can use Aspose.Cells API to convert TSV to PDF ...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Directly&lt;/li&gt;
&lt;li&gt;With One Page Per Sheet Option&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;TSV Info:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Tab-separated_values" rel="noopener noreferrer"&gt;TSV file&lt;/a&gt; is an abbreviation of Tab-separated values because it uses Tab to separate fields in a row.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Aspose.Cells Info:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/" rel="noopener noreferrer"&gt;Aspose.Cells&lt;/a&gt; API supports number of platform e.g. .NET, Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells" rel="noopener noreferrer"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Sample TSV File
&lt;/h1&gt;

&lt;p&gt;You can try the code given in this article &lt;em&gt;with any TSV file&lt;/em&gt;. But for illustration purpose, we use this &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/sampleConvertTSVToPDF.tsv" rel="noopener noreferrer"&gt;sample TSV file&lt;/a&gt; inside the code &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Sample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;as shown in this image&lt;/a&gt; for your reference.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Sample TSV file to be converted to PDF formats using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FSample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FSample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" title="Sample TSV file to be converted to PDF formats using Aspose.Cells API" alt="Sample TSV file to be converted to PDF formats using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Convert TSV to PDF Directly
&lt;/h1&gt;

&lt;p&gt;The following sample code loads the sample TSV file as shown earlier and converts it to PDF directly.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Convert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/outputConvertTSVToPDFDirectly.pdf" rel="noopener noreferrer"&gt;output PDF file generated by the above code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;output PDF has two pages. If you want to render everything on a single PDF page, you can use One Page Per Sheet option that will be explained soon.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Convert TSV to PDF Directly using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" title="Convert TSV to PDF Directly using Aspose.Cells API" alt="Convert TSV to PDF Directly using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Convert TSV to PDF with One Page Per Sheet option
&lt;/h1&gt;

&lt;p&gt;The following sample code loads the sample TSV file and converts it to PDF with &lt;em&gt;One Page Per Sheet&lt;/em&gt; option specified using the &lt;em&gt;PdfSaveOptions&lt;/em&gt; class.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Convert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/outputConvertTSVToPDFWithOnePagePerSheetOption.pdf" rel="noopener noreferrer"&gt;output PDF file generated by the above code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;the entire TSV contents are rendered on a single PDF page.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" title="Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API" alt="Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  See also
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellscpp/Opening+Files" rel="noopener noreferrer"&gt;Opening Files&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellscpp/Saving+Files" rel="noopener noreferrer"&gt;Saving Files&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forum.aspose.com/c/cells" rel="noopener noreferrer"&gt;Forum -  Aspose.Cells Product Family&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>tsv</category>
      <category>pdf</category>
      <category>aspose</category>
      <category>cpp</category>
    </item>
    <item>
      <title>Convert TSV to PDF in Java</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Fri, 05 Oct 2018 10:18:59 +0000</pubDate>
      <link>https://dev.to/asposecells/convert-tsv-to-pdf-in-java-3i34</link>
      <guid>https://dev.to/asposecells/convert-tsv-to-pdf-in-java-3i34</guid>
      <description>&lt;p&gt;Aspose.Cells is capable of loading TSV file and converting it to PDF with diverse options. In this article, we will explain how Java developers can use Aspose.Cells API to convert TSV to PDF ...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Directly&lt;/li&gt;
&lt;li&gt;With One Page Per Sheet Option&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;TSV Info:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Tab-separated_values" rel="noopener noreferrer"&gt;TSV file&lt;/a&gt; is an abbreviation of Tab-separated values because it uses Tab to separate fields in a row.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Aspose.Cells Info:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/" rel="noopener noreferrer"&gt;Aspose.Cells&lt;/a&gt; API supports number of platform e.g. .NET, Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells" rel="noopener noreferrer"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Sample TSV File
&lt;/h1&gt;

&lt;p&gt;You can try the code given in this article &lt;em&gt;with any TSV file&lt;/em&gt;. But for illustration purpose, we use this &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/sampleConvertTSVToPDF.tsv" rel="noopener noreferrer"&gt;sample TSV file&lt;/a&gt; inside the code &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Sample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;as shown in this image&lt;/a&gt; for your reference.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Sample TSV file to be converted to PDF formats using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FSample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FSample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" title="Sample TSV file to be converted to PDF formats using Aspose.Cells API" alt="Sample TSV file to be converted to PDF formats using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Convert TSV to PDF Directly
&lt;/h1&gt;

&lt;p&gt;The following sample code loads the sample TSV file as shown earlier and converts it to PDF directly.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Convert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/outputConvertTSVToPDFDirectly.pdf" rel="noopener noreferrer"&gt;output PDF file generated by the above code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;output PDF has two pages. If you want to render everything on a single PDF page, you can use One Page Per Sheet option that will be explained soon.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Convert TSV to PDF Directly using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" title="Convert TSV to PDF Directly using Aspose.Cells API" alt="Convert TSV to PDF Directly using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Convert TSV to PDF with One Page Per Sheet option
&lt;/h1&gt;

&lt;p&gt;The following sample code loads the sample TSV file and converts it to PDF with &lt;em&gt;One Page Per Sheet&lt;/em&gt; option specified using the &lt;em&gt;PdfSaveOptions&lt;/em&gt; class.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Convert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/outputConvertTSVToPDFWithOnePagePerSheetOption.pdf" rel="noopener noreferrer"&gt;output PDF file generated by the above code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;the entire TSV contents are rendered on a single PDF page.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" title="Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API" alt="Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  See also
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsjava/Opening+Files+with+Different+Formats" rel="noopener noreferrer"&gt;Opening Files with Different Formats&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsjava/Converting+Workbook+to+Different+Formats" rel="noopener noreferrer"&gt;Converting Workbook to Different Formats&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forum.aspose.com/c/cells" rel="noopener noreferrer"&gt;Forum -  Aspose.Cells Product Family&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>tsv</category>
      <category>pdf</category>
      <category>aspose</category>
      <category>java</category>
    </item>
    <item>
      <title>Convert TSV to PDF in C#.NET</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Fri, 05 Oct 2018 10:18:20 +0000</pubDate>
      <link>https://dev.to/asposecells/convert-tsv-to-pdf-in-c-4dfc</link>
      <guid>https://dev.to/asposecells/convert-tsv-to-pdf-in-c-4dfc</guid>
      <description>&lt;p&gt;Aspose.Cells is capable of loading TSV file and converting it to PDF with diverse options. In this article, we will explain how C# or .NET developers can use &lt;a href="https://products.aspose.com/cells/net" rel="noopener noreferrer"&gt;Aspose.Cells for .NET&lt;/a&gt; API to convert TSV to PDF ...&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Directly&lt;/li&gt;
&lt;li&gt;With One Page Per Sheet Option&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;TSV Info:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Tab-separated_values" rel="noopener noreferrer"&gt;TSV file&lt;/a&gt; is an abbreviation of Tab-separated values because it uses Tab to separate fields in a row.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Aspose.Cells Info:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/" rel="noopener noreferrer"&gt;Aspose.Cells&lt;/a&gt; API supports all .NET frameworks e.g. .NET 2.0, .NET 3.5, .NET 4.0, .NET 7.0, .NET Core, .NET Standard 2.0, Xamarin and can be used to develop both ASP.NET web sites and Windows Forms application. It is also available in other platforms e.g. Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells" rel="noopener noreferrer"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Sample TSV File
&lt;/h1&gt;

&lt;p&gt;You can try the code given in this article &lt;em&gt;with any TSV file&lt;/em&gt;. But for illustration purpose, we use this &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/sampleConvertTSVToPDF.tsv" rel="noopener noreferrer"&gt;sample TSV file&lt;/a&gt; inside the code &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Sample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;as shown in this image&lt;/a&gt; for your reference.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Sample TSV file to be converted to PDF formats using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FSample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FSample-TSV-file-to-be-converted-to-PDF-formats-using-Aspose.Cells-API.png" title="Sample TSV file to be converted to PDF formats using Aspose.Cells API" alt="Sample TSV file to be converted to PDF formats using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Convert TSV to PDF Directly
&lt;/h1&gt;

&lt;p&gt;The following sample code loads the sample TSV file as shown earlier and converts it to PDF directly.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Convert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/outputConvertTSVToPDFDirectly.pdf" rel="noopener noreferrer"&gt;output PDF file generated by the above code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;output PDF has two pages. If you want to render everything on a single PDF page, you can use One Page Per Sheet option that will be explained soon.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Convert TSV to PDF Directly using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-Directly-using-Aspose.Cells-API.png" title="Convert TSV to PDF Directly using Aspose.Cells API" alt="Convert TSV to PDF Directly using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Convert TSV to PDF with One Page Per Sheet option
&lt;/h1&gt;

&lt;p&gt;The following sample code loads the sample TSV file and converts it to PDF with &lt;em&gt;One Page Per Sheet&lt;/em&gt; option specified using the &lt;em&gt;PdfSaveOptions&lt;/em&gt; class.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/Convert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" rel="noopener noreferrer"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Convert-TSV-to-PDF/outputConvertTSVToPDFWithOnePagePerSheetOption.pdf" rel="noopener noreferrer"&gt;output PDF file generated by the above code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;the entire TSV contents are rendered on a single PDF page.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2FAsposeCells%2FAsposeCells-Screenshots-and-Sample-Files%2Fmaster%2FConvert-TSV-to-PDF%2FConvert-TSV-to-PDF-with-One-Page-Per-Sheet-option-using-Aspose.Cells-API.png" title="Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API" alt="Convert TSV to PDF with One Page Per Sheet option using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  See also
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsnet/Opening+Files+with+Different+Formats" rel="noopener noreferrer"&gt;Opening Files with Different Formats&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsnet/Different+Ways+to+Save+Files" rel="noopener noreferrer"&gt;Different Ways to Save Files&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forum.aspose.com/c/cells" rel="noopener noreferrer"&gt;Forum -  Aspose.Cells Product Family&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>tsv</category>
      <category>pdf</category>
      <category>aspose</category>
      <category>csharp</category>
    </item>
    <item>
      <title>Copy Excel Range to Worksheet in C++</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Tue, 25 Sep 2018 07:40:18 +0000</pubDate>
      <link>https://dev.to/asposecells/copy-excel-range-to-worksheet-in-c-4an4</link>
      <guid>https://dev.to/asposecells/copy-excel-range-to-worksheet-in-c-4an4</guid>
      <description>&lt;p&gt;Microsoft Excel Range can contain a single cell or multiple cells. It has a start cell and end cell. All the cells that lie within start cell and end cell constitutes a range. Sometimes, user wants to copy a range of cells to some other location inside the same worksheet or to some other location inside the different worksheet.&lt;/p&gt;

&lt;p&gt;The purpose of this article is to explain how the C++ developers or programmers can use &lt;a href="https://products.aspose.com/cells/cpp"&gt;Aspose.Cells&lt;/a&gt; in their applications to copy Excel range to same worksheet or different worksheet.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports number of platform e.g. .NET, Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Copy Excel Range to Same Worksheet
&lt;/h1&gt;

&lt;p&gt;The following C++ sample code loads the sample Excel file inside the Aspose.Cells Workbook object. It then accesses the first worksheet which contains the source Excel range that we want to copy to same worksheet. It then uses the &lt;strong&gt;&lt;em&gt;Range.Copy()&lt;/em&gt;&lt;/strong&gt; method to copy it to new location inside the worksheet.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/sampleExcelRange.xlsx"&gt;sample Excel file used inside the code&lt;/a&gt; and the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/outputCopyExcelRangeToSameWorksheet.xlsx"&gt;output Excel file generated by the code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;strong&gt;&lt;em&gt;the source Excel range has been copied to the destination Excel range.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--SZyx3fEX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SZyx3fEX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png" alt="Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API" title="Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Copy Excel Range to Different Worksheet
&lt;/h1&gt;

&lt;p&gt;The following C++ sample code loads the sample Excel file inside the Aspose.Cells Workbook object. It accesses the first worksheet which contains the source Excel range and the second worksheet where source range is to be copied. It then copies source range of first worksheet into destination range inside second worksheet using the &lt;em&gt;&lt;strong&gt;Range.Copy()&lt;/strong&gt;&lt;/em&gt; method.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/sampleExcelRange.xlsx"&gt;sample Excel file used inside the code&lt;/a&gt; and the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/outputCopyExcelRangeToDifferentWorksheet.xlsx"&gt;output Excel file generated by the code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;&lt;strong&gt;the source Excel range has been copied to the destination Excel range in different worksheet.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Range copied to Different Worksheet using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bjN8vu-r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bjN8vu-r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png" alt="Excel Range copied to Different Worksheet using Aspose.Cells API" title="Excel Range copied to Different Worksheet using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  See also
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/asposecells/copy-excel-range-to-worksheet-in-c-3om4"&gt;Copy Excel Range to Worksheet in C#&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellscpp/Create+Named+Range+in+a+Workbook"&gt;Create Named Range in a Workbook&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forums.aspose.com/c/cells"&gt;Forum -  Aspose.Cells Product Family&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>copyrange</category>
      <category>excel</category>
      <category>aspose</category>
      <category>cpp</category>
    </item>
    <item>
      <title>Copy Excel Range to Worksheet in Java</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Tue, 25 Sep 2018 07:39:28 +0000</pubDate>
      <link>https://dev.to/asposecells/copy-excel-range-to-worksheet-in-java-648</link>
      <guid>https://dev.to/asposecells/copy-excel-range-to-worksheet-in-java-648</guid>
      <description>&lt;p&gt;Microsoft Excel Range can contain a single cell or multiple cells. It has a start cell and end cell. All the cells that lie within start cell and end cell constitutes a range. Sometimes, user wants to copy a range of cells to some other location inside the same worksheet or to some other location inside the different worksheet.&lt;/p&gt;

&lt;p&gt;The purpose of this article is to explain how the Java developers or programmers can use &lt;a href="https://products.aspose.com/cells/java"&gt;Aspose.Cells&lt;/a&gt; in their applications to copy Excel range to same worksheet or different worksheet.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports number of platform e.g. .NET, Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Copy Excel Range to Same Worksheet
&lt;/h1&gt;

&lt;p&gt;The following Java sample code loads the sample Excel file inside the Aspose.Cells Workbook object. It then accesses the first worksheet which contains the source Excel range that we want to copy to same worksheet. It then uses the &lt;strong&gt;&lt;em&gt;Range.copy()&lt;/em&gt;&lt;/strong&gt; method to copy it to new location inside the worksheet.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/sampleExcelRange.xlsx"&gt;sample Excel file used inside the code&lt;/a&gt; and the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/outputCopyExcelRangeToSameWorksheet.xlsx"&gt;output Excel file generated by the code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;strong&gt;&lt;em&gt;the source Excel range has been copied to the destination Excel range.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--SZyx3fEX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SZyx3fEX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png" alt="Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API" title="Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Copy Excel Range to Different Worksheet
&lt;/h1&gt;

&lt;p&gt;The following Java sample code loads the sample Excel file inside the Aspose.Cells Workbook object. It accesses the first worksheet which contains the source Excel range and the second worksheet where source range is to be copied. It then copies source range of first worksheet into destination range inside second worksheet using the &lt;em&gt;&lt;strong&gt;Range.copy()&lt;/strong&gt;&lt;/em&gt; method.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/sampleExcelRange.xlsx"&gt;sample Excel file used inside the code&lt;/a&gt; and the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/outputCopyExcelRangeToDifferentWorksheet.xlsx"&gt;output Excel file generated by the code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;&lt;strong&gt;the source Excel range has been copied to the destination Excel range in different worksheet.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Range copied to Different Worksheet using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bjN8vu-r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bjN8vu-r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png" alt="Excel Range copied to Different Worksheet using Aspose.Cells API" title="Excel Range copied to Different Worksheet using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  See also
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/asposecells/copy-excel-range-to-worksheet-in-c-4an4"&gt;Copy Excel Range to Worksheet in C++&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsjava/Copy+Range+Data+with+Style"&gt;Copy Range Data with Style&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsjava/Copy+Range+Data+Only"&gt;Copy Range Data Only&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forums.aspose.com/c/cells"&gt;Forum -  Aspose.Cells Product Family&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>copyrange</category>
      <category>excel</category>
      <category>aspose</category>
      <category>java</category>
    </item>
    <item>
      <title>Copy Excel Range to Worksheet in C#.NET</title>
      <dc:creator>AsposeCells</dc:creator>
      <pubDate>Tue, 25 Sep 2018 07:35:56 +0000</pubDate>
      <link>https://dev.to/asposecells/copy-excel-range-to-worksheet-in-c-3om4</link>
      <guid>https://dev.to/asposecells/copy-excel-range-to-worksheet-in-c-3om4</guid>
      <description>&lt;p&gt;Microsoft Excel Range can contain a single cell or multiple cells. It has a start cell and end cell. All the cells that lie within start cell and end cell constitutes a range. Sometimes, user wants to copy a range of cells to some other location inside the same worksheet or to some other location inside the different worksheet.&lt;/p&gt;

&lt;p&gt;The purpose of this article is to explain how the C# developers or programmers can use &lt;a href="https://products.aspose.com/cells/net"&gt;Aspose.Cells for .NET&lt;/a&gt; in their applications to copy Excel range to same worksheet or different worksheet.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://products.aspose.com/cells/"&gt;Aspose.Cells&lt;/a&gt; API supports all .NET frameworks e.g. .NET 2.0, .NET 3.5, .NET 4.0, .NET 7.0, .NET Core, .NET Standard 2.0, Xamarin and can be used to develop both ASP.NET web sites and Windows Forms application. It is also available in other platforms e.g. Java, C++, Android, JavaScript, PHP etc. Besides, &lt;a href="https://products.aspose.cloud/cells"&gt;Aspose.Cells is available in Cloud as REST or RESTful APIs&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  Copy Excel Range to Same Worksheet
&lt;/h1&gt;

&lt;p&gt;The following C# sample code loads the sample Excel file inside the Aspose.Cells Workbook object. It then accesses the first worksheet which contains the source Excel range that we want to copy to same worksheet. It then uses the &lt;strong&gt;&lt;em&gt;Range.Copy()&lt;/em&gt;&lt;/strong&gt; method to copy it to new location inside the worksheet.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/sampleExcelRange.xlsx"&gt;sample Excel file used inside the code&lt;/a&gt; and the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/outputCopyExcelRangeToSameWorksheet.xlsx"&gt;output Excel file generated by the code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;strong&gt;&lt;em&gt;the source Excel range has been copied to the destination Excel range.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--SZyx3fEX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SZyx3fEX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-different-location-inside-the-Same-Worksheet-using-Aspose.Cells-API.png" alt="Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API" title="Excel Range copied to different location inside the Same Worksheet using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Copy Excel Range to Different Worksheet
&lt;/h1&gt;

&lt;p&gt;The following C# sample code loads the sample Excel file inside the Aspose.Cells Workbook object. It accesses the first worksheet which contains the source Excel range and the second worksheet where source range is to be copied. It then copies source range of first worksheet into destination range inside second worksheet using the &lt;em&gt;&lt;strong&gt;Range.Copy()&lt;/strong&gt;&lt;/em&gt; method.&lt;/p&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;


&lt;p&gt;The following &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png"&gt;screenshot&lt;/a&gt; shows the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/sampleExcelRange.xlsx"&gt;sample Excel file used inside the code&lt;/a&gt; and the &lt;a href="https://github.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/blob/master/Copy-Excel-Range-to-Worksheet/outputCopyExcelRangeToDifferentWorksheet.xlsx"&gt;output Excel file generated by the code&lt;/a&gt; for your reference. As you can see inside the screenshot, &lt;em&gt;&lt;strong&gt;the source Excel range has been copied to the destination Excel range in different worksheet.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Caption:&lt;/strong&gt; Excel Range copied to Different Worksheet using Aspose.Cells API&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bjN8vu-r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bjN8vu-r--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/AsposeCells/AsposeCells-Screenshots-and-Sample-Files/master/Copy-Excel-Range-to-Worksheet/Excel-Range-copied-to-Different-Worksheet-using-Aspose.Cells-API.png" alt="Excel Range copied to Different Worksheet using Aspose.Cells API" title="Excel Range copied to Different Worksheet using Aspose.Cells API"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  See also
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/asposecells/copy-excel-range-to-worksheet-in-java-648"&gt;Copy Excel Range to Worksheet in Java&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsnet/Copy+Range+Data+with+Style"&gt;Copy Range Data with Style&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.aspose.com/display/cellsnet/Copy+Range+Data+Only"&gt;Copy Range Data Only&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forums.aspose.com/c/cells"&gt;Forum -  Aspose.Cells Product Family&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>copyrange</category>
      <category>excel</category>
      <category>aspose</category>
      <category>csharp</category>
    </item>
  </channel>
</rss>
