SUMIFS Does Not Require _xlfn

Fix #4182. It was on our list as "introduced in 2019". It was, in fact, available with Excel 2007 (https://support.microsoft.com/en-us/office/excel-functions-alphabetical-b3944572-255d-4efb-bb96-c6d90033e188#bm19), so does not require a prefix when writing it to a spreadsheet.
This commit is contained in:
oleibman
2024-10-06 08:35:26 -07:00
parent 87ddd21eb0
commit dab6ba83e4
2 changed files with 1 additions and 1 deletions
@@ -130,7 +130,6 @@ class FunctionPrefix
. '|ifs'
. '|maxifs'
. '|minifs'
. '|sumifs'
. '|textjoin'
// functions added with Excel 365
. '|anchorarray'
@@ -37,6 +37,7 @@ class FunctionPrefixTest extends TestCase
'DAYS/NETWORKDAYS 4' => ['ABS(_xlfn.DAYS(DATE(2023,1,1),TODAY()))', 'ABS(_xlfn.DAYS(DATE(2023,1,1),TODAY()))'],
'DAYS/NETWORKDAYS 5' => ['NETWORKDAYS(DATE(2023,1,1),TODAY(), C:C)', 'NETWORKDAYS(DATE(2023,1,1),TODAY(), C:C)'],
'COUNTIFS reclassified as Legacy' => ['COUNTIFS()', 'COUNTIFS()'],
'SUMIFS reclassified as Legacy' => ['SUMIFS()', 'SUMIFS()'],
];
}
}