-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] functions: FILTER with strings and errors
The FILTER function should only consider numbers and booleans as the conditions but it currently only accepts all types of values (strings, errors) as long as the value is "truthy". Steps to reproduce: Let's consider this grid A B 1 Alice coucou 2 Bob TRUE The formula =FILTER(A1:A2, B1:B2) should only yield Bob and not Alice. Note that this is a breaking change since the behavior is different. That's why I'm not backporting the fix. closes #5159 Task: 4307604 Signed-off-by: Rémi Rahir (rar) <[email protected]>
- Loading branch information
1 parent
eb4c130
commit 03d7080
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters