Convert FUMIFS to a format useable in Excel 2003

  • Thread starter Thread starter TeeJ
  • Start date Start date
T

TeeJ

I have the following formula
SUMIFS(Costs!$E$22:$E$60,Costs!$D$22:$D$60,Summary!$A7,Costs!$C$22:$C$60,Summary!D$3)
, used in an Excel 2007 spreadsheet. I'm trying to rewrite it as a
SUMPRODUCT of SUMIF with no luck. Can anyone steer me in the right direction?
 
Figured it out - it should be:
=SUMPRODUCT(Costs!$E$22:$E$60,(Costs!$D$22:$D$60=Summary!$A7)*(Costs!$C$22:$C$60=Summary!D$3))
 
Back
Top