In EPPlus it's very easy to delete a column, the code is as follows:
using (ExcelPackage xlPackage = new ExcelPackage())
{
xlPackage.Workbook.Worksheets.Add("Summary");
xlPackage.Workbook.Worksheets["Summary"].DeleteColumn(21);
}
Is it possible to "not delete", but instead clear all values in a given column, maybe something like this?
using (ExcelPackage xlPackage = new ExcelPackage())
{
xlPackage.Workbook.Worksheets.Add("Summary");
xlPackage.Workbook.Worksheets["Summary"].Column(21).Clear();
}
I don't see a method for this in EPPlus, and while there are similar questions, I haven't found anyone else attempting to do this on entire columns.