I often need to get conditional sums from tables of data. As far as I can tell, using SUMPRODUCT with a series or ranges and criteria is equivalent to to using SUM as an array formula with the same settings.
e.g.,To total all shipments from a particular Distribution centre I can use =SUMPRODUCT(Qty*(Ship_From=A7)) or {=SUM((Qty*(Ship_From=A7)))} Where Qty and Ship_From are named ranges in my table.
Is there any advantage in using one version over another especially with regard to recalculation times?
Thanks