How to Write Data to Excel File in C#

A detailed guide on how to write data to an Excel file in C# using the EPPlus library, making it easy to store and manage data in Excel spreadsheets.

In this guide, we will use the EPPlus library to write data to an Excel file. This library allows us to create, edit, and save data to Excel files effortlessly using C#.

Step 1: Install the EPPlus Library

First, install the EPPlus library via NuGet Package Manager. Run the following command in the Package Manager Console:

Install-Package EPPlus

Step 2: Write C# Code to Write Data to Excel File

using OfficeOpenXml;
using System.IO;

namespace ExcelWriteExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // Define the path to the Excel file
            string filePath = @"C:\Users\Public\Documents\output.xlsx";

            // Create a new Excel file
            FileInfo fileInfo = new FileInfo(filePath);
            using (ExcelPackage excelPackage = new ExcelPackage(fileInfo))
            {
                // Create a new worksheet
                ExcelWorksheet worksheet = excelPackage.Workbook.Worksheets.Add("Sheet1");

                // Write data to cells in the worksheet
                worksheet.Cells[1, 1].Value = "ID";
                worksheet.Cells[1, 2].Value = "Name";
                worksheet.Cells[1, 3].Value = "Age";

                worksheet.Cells[2, 1].Value = 1;
                worksheet.Cells[2, 2].Value = "John Doe";
                worksheet.Cells[2, 3].Value = 25;

                worksheet.Cells[3, 1].Value = 2;
                worksheet.Cells[3, 2].Value = "Jane Smith";
                worksheet.Cells[3, 3].Value = 30;

                // Save the Excel file
                excelPackage.Save();
            }

            System.Console.WriteLine("Data written to Excel file successfully!");
        }
    }
}

Detailed Explanation

  1. using OfficeOpenXml;: Import the EPPlus library.
  2. FileInfo fileInfo = new FileInfo(filePath);: Define the path of the Excel file.
  3. ExcelPackage excelPackage = new ExcelPackage(fileInfo): Create a new Excel file.
  4. excelPackage.Workbook.Worksheets.Add("Sheet1"): Create a new worksheet named "Sheet1".
  5. worksheet.Cells[1, 1].Value = "ID";: Write data to the cell at row 1, column 1.
  6. excelPackage.Save(): Save the Excel file.

System Requirements

  • .NET Framework 4.5 or later
  • Latest version of the EPPlus library

How to install the library to run the above C# code

  1. Open your C# project in Visual Studio.
  2. Go to Tools > NuGet Package Manager > Package Manager Console.
  3. Type Install-Package EPPlus and press Enter.

Tips

  • Ensure you have write permissions for the selected directory.
  • Check the version of EPPlus to ensure compatibility with your project.


Related

How to open Notepad using C#

A guide on how to open the Notepad application using C# via the `Process` class in .NET. This tutorial helps C# developers understand how to interact with external applications using simple code.
How to DELETE data from a MySQL database using C#

A guide on how to use Prepared Statements in C# to delete data from a table in a MySQL database safely and effectively using multiple parameters.
JSON Web Token Authentication with C#

A guide on how to implement JSON Web Token (JWT) authentication in C#. This article will show how to create, sign, and validate JWTs to secure APIs and authenticate users.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.
How to INSERT data into a MySQL database using C#

A guide on how to use Prepared Statements in C# to insert data into a table in a MySQL database safely and effectively.
Generating Captcha Code in C#

A guide on how to create a Captcha code using C# to protect web forms and applications from automated access. This tutorial demonstrates how to use the `System.Drawing` library to generate Captcha images.
How to POST Data to an API using C#

A guide on how to send data to an API using the POST method in C# with the HttpClient class, enabling you to easily interact with APIs.
How to UPDATE data in a MySQL database using C#

A guide on how to use Prepared Statements in C# to update data in a MySQL table safely and efficiently with multiple parameters.
How to convert Unicode characters with diacritics to non-diacritics in C#

A detailed guide on how to convert Unicode characters with Vietnamese diacritics into non-diacritic characters in C#.
Guide to Reading Excel Files Using C#

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using C#, utilizing the EPPlus library with step-by-step installation and illustrative examples.

main.add_cart_success