Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EPPLUS To Clear Contents of A Range Of Cells

I want to use EPPLUS to clear a range of cells. I tried the syntax below, but it gives me an error of

object reference not set to an instance of an object

What would be the proper way to clear the contents of cells A24:C36 with EPPLUS?

ExcelPackage package = new ExcelPackage();

ExcelWorksheet ws = package.Workbook.Worksheets["Sheet1"];

ws.Cells["A24:C36"].Clear();
like image 910
BellHopByDayAmetuerCoderByNigh Avatar asked Aug 07 '17 16:08

BellHopByDayAmetuerCoderByNigh


1 Answers

Your code is correct. I think the .xlsx file does not have Worksheets with Sheet1 name.

For example, I created this excel file like this:

excel

I wanted to erase A24:C36. I encountered null reference error before executing ws.Cells["A24:C36"].Clear(); like this:

error

If I use code below instead of it, it works properly (Sheet2).

ExcelPackage package = new ExcelPackage();

ExcelWorksheet ws = package.Workbook.Worksheets["Sheet2"];

ws.Cells["A24:C36"].Clear();

Notice that having no value in A24:C36 does not make an error.

like image 95
Ali Soltani Avatar answered Oct 12 '22 22:10

Ali Soltani