ExcelXmlPowerPack 1.0.2

dotnet add package ExcelXmlPowerPack --version 1.0.2                
NuGet\Install-Package ExcelXmlPowerPack -Version 1.0.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ExcelXmlPowerPack" Version="1.0.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExcelXmlPowerPack --version 1.0.2                
#r "nuget: ExcelXmlPowerPack, 1.0.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ExcelXmlPowerPack as a Cake Addin
#addin nuget:?package=ExcelXmlPowerPack&version=1.0.2

// Install ExcelXmlPowerPack as a Cake Tool
#tool nuget:?package=ExcelXmlPowerPack&version=1.0.2                

ExcelXmlPowerPack README

Overview

The ExcelXmlPowerPack library provides a set of functions to facilitate reading, writing, and manipulating Excel files using the Open XML SDK. It allows users to perform a variety of operations on Excel workbooks, such as reading cell values, adding or deleting sheets, and modifying cell formats. This DLL is designed to be integrated with Blue Prism to automate Excel-related tasks.

Features

  • Read cell values from specified sheets.
  • Retrieve all sheet names in a workbook.
  • Get sheet name by index and index by sheet name.
  • Identify the last used row and column in a sheet.
  • Get the used range of a sheet.
  • Add, delete, hide, and unhide sheets.
  • Apply color to a range of cells.
  • Read a sheet into a DataTable and write a DataTable to a sheet.

Installation

  1. Add the Open XML SDK to your project:

    Install-Package DocumentFormat.OpenXml
    
  2. Reference the ExcelXmlPowerPack DLL in your Blue Prism project:

    • Open Blue Prism and navigate to the "Objects" section.
    • Create a new Business Object or edit an existing one.
    • In the "Initialize" action, add a reference to the ExcelXmlPowerPack.dll by selecting "Imports" and browsing to the location of the DLL file.
  3. Include the ExcelXmlPowerPack namespace in your Blue Prism code stages:

    Imports ExcelXmlPowerPack
    

Usage

Initialization

Create an instance of the ExcelXmlAction class by providing the file path of the Excel workbook.

Dim excelActions As New ExcelXmlMain.ExcelXmlAction("[Path to your Excel file]")

Reading Cell Values

Read the value of a specific cell from a specified sheet.

Dim cellValue As String = excelActions.ReadCellValue("Sheet1", "A1")

Retrieve All Sheet Names

Get all the sheet names in the workbook.

Dim sheetNames() As String = excelActions.GetAllSheetNames()

Get Sheet Name by Index

Retrieve the sheet name by its index.

Dim sheetName As String = excelActions.GetSheetByIndex(0)

Get Sheet Index by Name

Retrieve the index of a sheet by its name.

Dim sheetIndex As Integer? = excelActions.GetSheetIndexByName("Sheet1")

Get Last Used Row and Column

Get the last used row in a sheet.

Dim lastRow As Integer = excelActions.GetLastUsedRow("Sheet1")

Get the last used column in a sheet.

Dim lastColumn As Object() = excelActions.GetLastUsedColumn("Sheet1")

Get Used Range

Retrieve the used range of a sheet.

Dim usedRange As Object() = excelActions.GetUsedRange("Sheet1")

Add, Delete, Hide, and Unhide Sheets

Add a new sheet to the workbook.

excelActions.AddSheet("NewSheet")

Delete an existing sheet.

excelActions.DeleteSheet("SheetToDelete")

Hide a sheet.

excelActions.HideSheet("SheetToHide")

Unhide a sheet.

excelActions.UnhideSheet("SheetToUnhide")

Apply Color to a Range

Apply a color to a range of cells in a sheet.

excelActions.AddColorToRange("Sheet1", "A1", "B2", "FFFF00")

Read and Write DataTable

Read a sheet into a DataTable.

Dim dataTable As DataTable = excelActions.ReadSheetToDataTable("Sheet1", "A1:C10", True)

Write a DataTable to a sheet.

ExcelXmlMain.ExcelXmlAction.WriteDataTableToSheet("[Path to your Excel file]", "SheetName", dataTable)

Exception Handling

The library includes comprehensive exception handling for various operations. If an error occurs, the methods throw SystemException with a detailed error message.

License

This library is licensed under the MIT License. Feel free to modify and distribute it as needed.

Contributing

Contributions are welcome! Please fork the repository and submit pull requests for any enhancements or bug fixes.

Contact

For any questions or support, please contact the author at [masteroflogic.mol@gmail.com].


This README provides a comprehensive guide to using the ExcelXmlPowerPack library, covering all the main functionalities and providing examples for each.

Product Compatible and additional computed target framework versions.
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 142 9/14/2024
1.0.1 122 6/13/2024
1.0.0 128 6/11/2024