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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org).
25
25
26
26
### Fixed
27
27
28
-
- More context options may be needed for http(s) image. [Php issue 17121](https://github.com/php/php-src/issues/17121)[PR #4276](https://github.com/PHPOffice/PhpSpreadsheet/pull/4276)
29
-
- Avoid unexpected charset in currency symbol. [PR #4279](https://github.com/PHPOffice/PhpSpreadsheet/pull/4279)
28
+
- More context options may be needed for http(s) image. [Php issue 17121](https://github.com/php/php-src/issues/17121)[PR #4276](https://github.com/PHPOffice/PhpSpreadsheet/pull/4276)
29
+
- Avoid unexpected charset in currency symbol. [PR #4279](https://github.com/PHPOffice/PhpSpreadsheet/pull/4279)
30
+
- Add forceFullCalc option to Xlsx Writer. [Issue #4269](https://github.com/PHPOffice/PhpSpreadsheet/issues/4269)[PR #4271](https://github.com/PHPOffice/PhpSpreadsheet/pull/4271)
31
+
- More context options may be needed for http(s) image. [Php issue 17121](https://github.com/php/php-src/issues/17121)[PR #4276](https://github.com/PHPOffice/PhpSpreadsheet/pull/4276)
32
+
- Coverage-related tweaks to Xls Reader. [PR #4277](https://github.com/PHPOffice/PhpSpreadsheet/pull/4277)
33
+
- Several fixed to ODS Writer. [Issue #4261](https://github.com/PHPOffice/PhpSpreadsheet/issues/4261)[PR #4263](https://github.com/PHPOffice/PhpSpreadsheet/pull/4263)[PR #4264](https://github.com/PHPOffice/PhpSpreadsheet/pull/4264)[PR #4266](https://github.com/PHPOffice/PhpSpreadsheet/pull/4266)
**Note** Formulas will still be calculated in any column set to be autosized
170
170
even if pre-calculated is set to false
171
171
172
+
**Note** Prior to release 3.7.0, the use of this feature will cause Excel to be used in a mode where opening a sheet saved in this manner *might* not automatically recalculate a cell's formula when a cell used it the formula changes. Furthermore, that behavior might be applied to all spreadsheets open at the time. To avoid this behavior, add the following statement after `setPreCalculateFormulas` above:
173
+
```php
174
+
$writer->setForceFullCalc(false);
175
+
```
176
+
In a future release, the property's default may change to `false` and that statement may no longer be required.
177
+
172
178
#### Office 2003 compatibility pack
173
179
174
180
Because of a bug in the Office2003 compatibility pack, there can be some
0 commit comments