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.

In this article, we will use the EPPlus library to read content from an Excel file. EPPlus is a powerful library that allows creating, modifying, and reading Excel files in C#.

// Step 1: Install the EPPlus library
// You can install it via the NuGet Package Manager Console using the following command:
// Install-Package EPPlus

using OfficeOpenXml;
using System;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        // Path to the Excel file
        var filePath = "example.xlsx";

        // Check if the file exists
        if (File.Exists(filePath))
        {
            // Load the Excel file
            using (var package = new ExcelPackage(new FileInfo(filePath)))
            {
                // Get the first sheet
                var worksheet = package.Workbook.Worksheets[0];

                // Iterate through each row and column to read data
                for (int row = 1; row <= worksheet.Dimension.End.Row; row++)
                {
                    for (int col = 1; col <= worksheet.Dimension.End.Column; col++)
                    {
                        Console.Write(worksheet.Cells[row, col].Text + "\t"); // Print the value of each cell
                    }
                    Console.WriteLine(); // Move to the next line after reading a row
                }
            }
        }
        else
        {
            Console.WriteLine("File does not exist.");
        }
    }
}

Detailed Explanation:

  1. Installing the EPPlus Library: Use the Install-Package EPPlus command in the NuGet Package Manager Console to install the EPPlus library.

  2. Loading the Excel File: ExcelPackage is used to load the Excel file.

  3. Accessing the Sheet: package.Workbook.Worksheets[0] retrieves the first sheet in the workbook.

  4. Iterating through Rows and Columns: A for loop is used to iterate through each row and column, and worksheet.Cells[row, col].Text retrieves the value of each cell.

System Requirements:

The code is compatible with C# 7.0 and later, requiring .NET Framework 4.5 or higher.

Tips:

  • Ensure you have installed the correct version of the EPPlus library.
  • Check the path to the Excel file to avoid file not found errors.
  • Use an integrated development environment (IDE) like Visual Studio to easily manage and run the code.


Related

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 GET JSON data from an API using C#

A guide on how to retrieve JSON data from an API using C#, leveraging the HttpClient class and Newtonsoft.Json library for processing data.
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.
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.
Comprehensive guide to concatenating strings in C#

A detailed guide on all the ways to concatenate strings in C#, including the concatenation operator, string methods, and other efficient approaches.
How to automatically log into a website using Selenium with Chrome in C#

A guide on how to use Selenium in C# to automatically log into a website. This article will use the Chrome browser and outline step-by-step how to automate the login process.
Hiding a C# Application from Task Manager

A guide on how to hide a C# application from Task Manager using Win32 API to adjust the application's display properties.
Convert markdown string to HTML using C#

A guide on how to convert a markdown string into HTML in C# using the MarkdownSharp library.
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.
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.

main.add_cart_success