Skip to content
This repository was archived by the owner on Nov 24, 2020. It is now read-only.
This repository was archived by the owner on Nov 24, 2020. It is now read-only.

Cannot "change" excel file #179

Description

@astorDev

I created the file helloWorld.xlsx, filled first row with "Hello".
Then executed the following:

using (var file = File.Open($"helloWorld.xlsx", FileMode.Open, FileAccess.ReadWrite))
{
    var workbook = WorkbookFactory.Create(file);
    var sheet = workbook[0];
    var helloCell = sheet.GetRow(0).GetCell(0);
    Console.WriteLine(helloCell.StringCellValue);
    var row = sheet.CreateRow(1);
    var worldCell = row.CreateCell(0);
    worldCell.SetCellValue("World"
    workbook.Write(file);
}

So after the execution I expect file to have two filled cells filled with "Hello" and "World", but in reality it stays as it was before the execution (With "Hello" only)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions