ExcelXmlPowerPack 1.0.0
See the version list below for details.
dotnet add package ExcelXmlPowerPack --version 1.0.0
NuGet\Install-Package ExcelXmlPowerPack -Version 1.0.0
<PackageReference Include="ExcelXmlPowerPack" Version="1.0.0" />
paket add ExcelXmlPowerPack --version 1.0.0
#r "nuget: ExcelXmlPowerPack, 1.0.0"
// Install ExcelXmlPowerPack as a Cake Addin #addin nuget:?package=ExcelXmlPowerPack&version=1.0.0 // Install ExcelXmlPowerPack as a Cake Tool #tool nuget:?package=ExcelXmlPowerPack&version=1.0.0
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
Add the Open XML SDK to your project:
Install-Package DocumentFormat.OpenXml
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.
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 | Versions 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. |
-
.NETFramework 4.5.1
- DocumentFormat.OpenXml (>= 3.0.2)
- DocumentFormat.OpenXml.Features (>= 3.0.2)
- DocumentFormat.OpenXml.Framework (>= 3.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.