oleibman

Results 266 comments of oleibman

Much table functionality has been added. If you find that it isn't working properly, please open a new issue so that we can take a look at it.

If you have a sample spreadsheet and code that demonstrates your problem, please upload it. Without that, there is nothing that I can do to help.

Thank you for the spreadsheet. I am unable to duplicate your problem. ```php $reader = new \PhpOffice\PhpSpreadsheet\Reader\Xlsx(); $spreadsheet = $reader->load('issue.4020.xlsx'); $worksheet = $spreadsheet->getActiveSheet(); var_dump($worksheet->getTableNames()); ``` Output: ``` C:\git\issue.4020.php:12: array(1) {...

Sometimes our tests do need to rely on an external file. Do you have an input file which demonstrates the problem when you load and then try to save it?...

Thank you for the sample file. You are correct that your fix eliminates the exception; however, the file that is produced is corrupt (error message when Excel opens it). So...

Good news! We currently use Phpunit 9 for our unit tests, but, now that we support only Php 8.1+, Dependabot recommended a switch to Phpunit 10. This requires some changes,...