I'm not sure that this kind of question can be posted here, but I think that it might be interested to many programmers. I need a package that would provide me with an interface for creating Excel files. I looked up on nuget and found several packages, but not a single one that supports asp net core.
Little bit of thread necromancy here; however I wanted to share some other options that I found for any of the other search explorers out there.
ws.Cell("B2").Value = "Contacts";
Uses Numeric Cell navigation e.g.
var rowIndex = 0;
IRow row = sheet1.CreateRow(rowIndex);
row.Height = 30 * 80;
row.CreateCell(0).SetCellValue("this is content");
somewhat relevant:
I need a package that would provide me with an interface for creating Excel files.
I am not certain if you are displaying this data and are looking for a way to export it to excel but this could be an option as well if you are attempting to allow this in either an admin or public view. There are options available for customizing the output via a callback if the default output is undesirable.
Please find Open XML SDK.
I'm using v2.5 with ASP.NET Core + .NET4.6, but as far I know the latest version v2.7 has added support for .NET Standard 1.3 - please read the change log.
More info:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With