0

I have to clear the existing cell value using NPOI in C#

I tried this but not working cell.SetCellValue(null);

1 Answers1

1

Did you tried to remove cell?

worksheet.GetRow(0).RemoveCell(0);
DanB
  • 2,022
  • 1
  • 12
  • 24