oleibman
oleibman
Issue mostly resolved; remainder is a duplicate of #3941. Closing.
```php $theme = $spreadsheet->getTheme(); // then use any of the methods in Theme do get the information you need ```
Hmm. Sorry for the misunderstanding. At any rate, you can get the *name* of the style easily enough: ```php $themeStyleName = $table->getStyle()->getTheme(); ``` But I don't see anywhere in the...
As I said, I cannot find the table style details (except name) anywhere in the spreadsheet file. If you can, please let me know how.
I can tell what the default table style name is for a spreadsheet. Would that be useful enough for your purposes?
PR #4412 adds support for table styles. Is the functionality which it adds useful for your purposes?
This is a variation on a theme. The at-sign doesn't actually exist in the formula - Excel is adding it. For an explanation of what it does, see https://github.com/PHPOffice/PhpSpreadsheet/pull/3659#issuecomment-1663040464. I...
I've stumbled upon an interesting result. Microsoft provides the following note about CONCATENATE - "In Excel 2016, Excel Mobile, and Excel for the web, this function has been replaced with...
The difference between CONCATENATE and CONCAT is how they handle arrays (usually in the form of cell ranges). I have reworked CONCATENATE as part of PR #3962 with other array-related...
Will be fixed by 4073.