I am using EPPlus to read a worksheet. On this sheet, I need the data in the BD columns. Column A has static values ββthat I would ignore. Values ββin col A are populated up to Row 1000 . But the data that I need will only be there until, say, the Row 450 , for example. I am currently using
int endRow = workSheet.Dimension.End.Row;
to calculate the last row read, but returns 1000 . Is there a way for me to have endRow set to 450 , ignoring col A ?
source share