You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [ ] a bug report
- [X] a feature request
- [X] **not** a usage question (ask them on https://stackoverflow.com/questions/tagged/phpspreadsheet or https://gitter.im/PHPOffice/PhpSpreadsheet)
Reading Excel tables doesn't seem to be supported because some corruption(?) issues. However, it would be still useful to get ranges (only reading) of the tables because that way data is still readable. Right now there is no way to get tables even listed.
Have a look at PR #2829... currently we support creating/writing tables (Xlsx only), but not reading them, and this new PR (which is likely to go in the next release) provides basic Reader support for tables with the Xlsx Reader
There's still a lot of work to do, even after that to provide support for calculated columns, and for Structured References in calculations, but it's ongoing development
This is:
Reading Excel tables doesn't seem to be supported because some corruption(?) issues. However, it would be still useful to get ranges (only reading) of the tables because that way data is still readable. Right now there is no way to get tables even listed.
In Python such solution exists:
that outputs something like {'dSalesReps': 'A1:C26', 'dProduct': 'E1:I17', 'dCategory': 'K1:L6', 'dSupplier': 'N1:R5'}
Having method to get those table ranges would allow user to fetch data from them with rangeToArray() method.
The text was updated successfully, but these errors were encountered: