
Originally Posted by
Jonmo1
If it was using Sumif instead SumifS that worked, then you still have a problem that needs to be addressed.
Aren't you curious WHY Sumif works but Sumifs does not?
If this returns a number value
=SUMIF(type;C10;EXTRA1)
But this returns #VALUE! Error
=SUMIFS(EXTRA1;type;C10)
The logical conclusion confirms daddylonglegs' post #4, that the 2 named ranges (EXTRA1 and type) are not the same size/shape.
Because Sumif allows the criteriarange and sumrange to be different size/shape, but Sumifs does not.
And if this is true, then I have doubts that the Sumif is even returning the "correct" result.
It may be returning a number, but it might not be the correct number.
Can you post a copy of the workbook?
Or what do these formulas return?
These 2 should be the same result
=ROWS(EXTRA1)
=ROWS(type)
These 2 should be the same result
=COLUMNS(EXTRA1)
=COLUMNS(type)
Bookmarks