Kaydet (Commit) e922d753 authored tarafından Eike Rathke's avatar Eike Rathke

Remove artificial parameter count limit from SUMPRODUCT()

Change-Id: I49956ebad76628588743e2af4eee9bfde4775198
üst 77fcd7c8
......@@ -1691,7 +1691,7 @@ public:
void ScInterpreter::ScSumProduct()
{
short nParamCount = GetByte();
if ( !MustHaveParamCount( nParamCount, 1, 30 ) )
if ( !MustHaveParamCountMin( nParamCount, 1) )
return;
// XXX NOTE: Excel returns #VALUE! for reference list and 0 (why?) for
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment