ExcelR 1.2.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ExcelR --version 1.2.0
NuGet\Install-Package ExcelR -Version 1.2.0
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="ExcelR" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExcelR --version 1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ExcelR, 1.2.0"
#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 ExcelR as a Cake Addin #addin nuget:?package=ExcelR&version=1.2.0 // Install ExcelR as a Cake Tool #tool nuget:?package=ExcelR&version=1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ExcelR
This project helps to create/read xlsx/csv files in an easy way.Best thing is you can directly export model to xlsx or import xlsx to model
Why ExcelR
With the help of ExcelR you can
- Read or write file from/to disk or stream
- Write you list of objects to file
- Read data from file to your model
- Control the color/font of column write to the xlsx file
- Set diffrent heading style
- Can read coustom property name with help of excelprop attribute
- And a lot more .....
Dependancy and required references
- NPOI v2.3.0
- NPOI.O0XML.dll
- NPOI.OpenXml4Net.dll
- NPOI.OpenXmlFormats.dll
- ICSharpCode.SharpZipLib.dll
Examples:-
Lets we have test class and some sample data as follow
public class TestModel { [ExcelRProp(Name = "First Name")] public string FirstName { get; set; } [ExcelRProp(ColTextColor = "Red", Name = "Last Name")] public string LastName { get; set; } [ExcelRProp(SkipExport = true)] public bool IsMale { get; set; } [ExcelRProp(HeadTextColor = "Blue" ,Name = "Date Of Birth")] public DateTime? Dob { get; set; } } var sampleData = new List<TestModel> { new TestModel {IsMale = true, Dob = DateTime.Now, FirstName = "jitender", LastName = "kundu"}, new TestModel {IsMale = true, FirstName = "raj"}, new TestModel {IsMale = true, Dob = DateTime.Now.AddDays(15), FirstName = "Michel"}, new TestModel {IsMale = true, Dob = DateTime.Now, FirstName = "Cena", LastName = "raj"}, new TestModel {IsMale = false, FirstName = "john", LastName = "Cena"} };
Write and save data to xlsx file
Method1:-
sampleData.ToExcel().Save(filePath);
Method2:-
- Get worksheet and write data to sheet as follow
var sheet = ExportHelper.GetWorkSheet();//you can pass custom sheet name //File data in the sheet sheet.Write(dataToWrite);
- Save sheet to stream or disk
var stream = sheet.ToStream(); sheet.Save(filePath);
Write and save data to csv file
sampleData.ToCsv(filePath);
Read data from xlsx file or stream
- Get worksheet from file or stream
var workSheet=ImportHelper.GetWorkSheet(filePath) Or var workSheet=ImportHelper.GetWorkSheet(stream)
- Read data from sheet
var data= sheet.Read<TestModel>();
Read data from csv file
var data = CsvHelper.ReadFromFile<TestModel>(sourceFilePath);
Manually creating xlsx from complex models
var sheet = ExportHelper.GetWorkSheet();//you can pass custom sheet name
var rowNo=0;
//create header row
var headerRow = sheet.CreateRow(rowNo++,Style.H1);
//Set header values
headerRow.SetValue(0,"String property")
//Create data rows and fill data
foreach(var item in sampleData){
var dataRow = sheet.CreateRow(rowNo++,Style.H1);
dataRow.SetValue(0,item.StringProp);
}
//Save to file
sheet.Woorkbook.Save(filePath);
//Output to stream
sheet.Woorkbook.ToStream();
Facing any issue Log it here
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. 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.
-
- NPOI (>= 2.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added skip column property.Added toExcel extension