This is how the table could look like when being unfiltered:
And this is how the table could look like when being filtered:
Is it possible to get only those filtered rows via EPPlus in C#?
I've searched through various issues in the EPPlus repository as well as through Google in general and did not find one single similar question/answer.
It seems that this is possible via PIA and Excel Interop, but I want to do it without any Office dependency.
I've also asked the question on EPPlus' GitHub page and got a working answer:
One has to check if the ExcelRow.Hidden
property is false to get only the unfiltered, visible rows.
Example:
if (!worksheet.Rows[rowNumber].Hidden)
{
// Process visible, unfiltered row.
}