We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As far as I can tell, this library doesn't have any support for reading if a row is hidden or not.
I have some sheets that I'd like to skip reading any hidden rows. It would be useful to either:
is_row_hidden
is_row_hidden = True
No response
- Spark version: - Spark-Excel version: - OS: - Cluster environment
It looks like the Apache POI library supports reading hidden attributes, at least for cells/sheets (see https://github.com/apache/poi/blob/6943cc9a9c8528ca47bba2a499e408e41f0c893e/poi/src/main/java/org/apache/poi/hssf/record/BoundSheetRecord.java#L158).
The text was updated successfully, but these errors were encountered:
That would be a nice contribution, we're open to PRs 👍
Sorry, something went wrong.
@nightscape I have a draft PR here: #817
Please let me know what you think.
No branches or pull requests
Is there an existing issue for this?
Current Behavior
As far as I can tell, this library doesn't have any support for reading if a row is hidden or not.
Expected Behavior
I have some sheets that I'd like to skip reading any hidden rows. It would be useful to either:
is_row_hidden
field, then I could filter out any rows withis_row_hidden = True
Steps To Reproduce
No response
Environment
Anything else?
It looks like the Apache POI library supports reading hidden attributes, at least for cells/sheets (see https://github.com/apache/poi/blob/6943cc9a9c8528ca47bba2a499e408e41f0c893e/poi/src/main/java/org/apache/poi/hssf/record/BoundSheetRecord.java#L158).
The text was updated successfully, but these errors were encountered: