python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Overwrite an existing Cell in Excel with OpenXML in C#
I am beginning to use OpenXML to update existing Excel file using .NET Core 5 C#.
I have pieced the following code below from examples from the internal and it write to the Excel sheet but I get the f...
William King
Votes: 0
Answers: 0
Reading data in a SpreadsheetDocument from MemoryStream
I have a page on my site where a user can upload a XLSX spreadsheet. This is a .NET Core web application using the DocumentFormat.OpenXml (2.15.0) NuGet package.
I'm trying to read through each row in...
Steven
Votes: 0
Answers: 1
OpenXML in C# .NET Core
Saving the filestream of an uploaded file to "var"
var fileStream = new MemoryStream(fileModel.FileData);
using (ExcelPackage package = new ExcelPackage(fileStream))
{
_ws = package.Work...
Shrth
Votes: 0
Answers: 1
Excel file (.xlsx) created by using DocumentFormat.OpenXML needs to be repaired when opening in Excel
I have a method which create an excel file (.xlsx) from a list of strings using DocumentFormat.OpenXml. The created file needs to be repaired when I try to open it with Excel 2016. When I click "...
Simone Urbani
Votes: 0
Answers: 1