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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top