helper-NPOIwrap-use-Excel-xlsx 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package helper-NPOIwrap-use-Excel-xlsx --version 1.0.1                
NuGet\Install-Package helper-NPOIwrap-use-Excel-xlsx -Version 1.0.1                
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="helper-NPOIwrap-use-Excel-xlsx" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add helper-NPOIwrap-use-Excel-xlsx --version 1.0.1                
#r "nuget: helper-NPOIwrap-use-Excel-xlsx, 1.0.1"                
#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 helper-NPOIwrap-use-Excel-xlsx as a Cake Addin
#addin nuget:?package=helper-NPOIwrap-use-Excel-xlsx&version=1.0.1

// Install helper-NPOIwrap-use-Excel-xlsx as a Cake Tool
#tool nuget:?package=helper-NPOIwrap-use-Excel-xlsx&version=1.0.1                

THIS DLL IS AVAILABLE AS NUGET-PACKAGE 'helper-NPOIwrap-use-Excel-xlsx.1.0.1.nupkg'

Seeing NPOI and using it is great. Usage for my own software is reading and writing data from/to real Excel files.
To wrap NPOI there are just a few use cases that need to be cared for if you listen to NPOI's creator and your own view about the data I/O.
There are just 3 kinds of cells used: 'string', 'numeric' and 'function' - while i don't need 'function'.
Concerning that i analysed the rows: there are special ones ( 'mixed' ) and the generell list types ( 'string', 'double' ). For both cases you can use the given classes:
→ ExcelDataRow: the mixed special version only as example. You would create your own data mixture in that way.
→ ExcelDataRowListString/-Double: the list type having only one celltype in the row
Value is not in empty cells on the program side - but you buffer in whole blocks of data. You can use header lines to mark your data in your own logic.
Procedure:

  • NPOIexcel myData = new NPOIexcel();
  • myData.ReadWorkbook(); // this will give you the file dialog
  • myData.ReadSheets(); // instanciates all sheets into the wrapper class
  • mydata.ReadSheetAsListDouble( 0 ); // no header, filled into dataListDouble

→ there you have your Excel's file data to your convenience, you can now get the data with "double[][] doubles = myData.DataListDoubleAsArrayRagged();".
I added functions to get and to give data to the wrapper ( DataList...As...(), Array...ToDataList*() ). In the program you take an instance of the 'NPOIexcel'-class and everything is wrapped. You should add data from the program side into the lists and then write the file.

→ there you have your Excel's file data to your convenience, you can now get the data with "double[][] doubles = myData.DataListDoubleAsArrayRagged();".
I added functions to get and to give data to the wrapper ( DataList...As...(), Array...ToDataList...() ). In the program you take an instance of the 'NPOIexcel'-class and everything is wrapped. You should add data from the program side into the lists and then write the file.

Demoprogram for the DLL is: WPFwithNPOI. It shows how easy you can read and write Excel-xlsx-files. Every menuitem uses its local version of the NPOIexcel-class and thus works as complete example about how-to-use the NPOIwrap on your own.

This helper class uses NPOI by
Author: Tony Qu,NPOI Contributors

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0-windows7.0

NuGet packages (1)

Showing the top 1 NuGet packages that depend on helper-NPOIwrap-use-Excel-xlsx:

Package Downloads
MatrixFFN

A feed forward network ( FFN ) with sigmoid activation function allowing 'n' hidden layers. Twin to the CPU classes are the ILGPU-versions giving you full accelerator speed.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 97 10/7/2024 1.0.7 is deprecated because it has critical bugs.
1.0.6 87 10/7/2024
1.0.5 89 10/7/2024
1.0.4 99 10/5/2024
1.0.3 98 10/1/2024
1.0.2 105 9/13/2024
1.0.1 104 9/12/2024
1.0.0 144 2/8/2024