SUMPRODUCT returns !Value#

  • Thread starter Thread starter Dana
  • Start date Start date
D

Dana

I have a sumif function with two criteria so I used the sumproduct function,
but it returns the !Value# error? I can't figure out why?
 
The formula is SUMPRODUCT(('DR Kronos'!$B$4:$B$4878=A2)*('DR
Kronos'!$I$4:$I$4878="Project")*('DR Kronos'!$G$4:$G$4878))
 
If you've got a value error, at least one of the cells in your range in
column G contains text, rather than a number.
 
This syntax will ignore text:

=SUMPRODUCT(--('DR Kronos'!$B$4:$B$4878=A2),--('DR
Kronos'!$I$4:$I$4878="Project"),'DR Kronos'!$G$4:$G$4878)
 
Back
Top