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
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
14
14
- Implementation of the ISREF() Information function.
15
15
- Added support for reading "formatted" numeric values from Csv files; although default behaviour of reading these values as strings is preserved.
16
16
17
-
(i.e a value of "12,345.67" can be read as numeric `1235.67`, not simply as a string `"12,345.67"`, if the `castFormattedNumberToNumeric()` setting is enabled.
17
+
(i.e a value of "12,345.67" can be read as numeric `12345.67`, not simply as a string `"12,345.67"`, if the `castFormattedNumberToNumeric()` setting is enabled.
18
18
19
19
This functionality is locale-aware, using the server's locale settings to identify the thousands and decimal separators.
20
20
@@ -66,6 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org).
66
66
67
67
### Fixed
68
68
69
+
- Support for "chained" ranges (e.g. `A5:C10:C20:F1`) in the Calculation Engine; and also support for using named ranges with the Range operator (e.g. `NamedRange1:NamedRange2`) [Issue #2730](https://github.com/PHPOffice/PhpSpreadsheet/issues/2730)[PR #2746](https://github.com/PHPOffice/PhpSpreadsheet/pull/2746)
69
70
- Update Conditional Formatting ranges and rule conditions when inserting/deleting rows/columns [Issue #2678](https://github.com/PHPOffice/PhpSpreadsheet/issues/2678)[PR #2689](https://github.com/PHPOffice/PhpSpreadsheet/pull/2689)
70
71
- Allow `INDIRECT()` to accept row/column ranges as well as cell ranges [PR #2687](https://github.com/PHPOffice/PhpSpreadsheet/pull/2687)
71
72
- Fix bug when deleting cells with hyperlinks, where the hyperlink was then being "inherited" by whatever cell moved to that cell address.
@@ -79,6 +80,8 @@ and this project adheres to [Semantic Versioning](https://semver.org).
79
80
80
81
Nor is this a perfect solution, as there may still be issues when function calls have array arguments that themselves contain function calls; but it's still better than the current logic.
81
82
- Fix for escaping double quotes within a formula [Issue #1971](https://github.com/PHPOffice/PhpSpreadsheet/issues/1971)[PR #2651](https://github.com/PHPOffice/PhpSpreadsheet/pull/2651)
83
+
- Fix invalid style of cells in empty columns with columnDimensions and rows with rowDimensions in added external sheet. [PR #2739](https://github.com/PHPOffice/PhpSpreadsheet/pull/2739)
0 commit comments