Conditional Sum Error

  • Thread starter Thread starter Lance
  • Start date Start date
L

Lance

Your example works fine for me. The only way I could get
it to error with "#value" was to place non numeric text in
the revenue column.

Lance
 
The most likely cause is that your ranges MSA, Type and Revenue are not
EXACTLY the same length.
As you have taken the 'column label' out of Revenue, do you need to do the
same for MSA and/or Type?

Although this will not help with your specific problem, may I recommend
using SUMPRODUCT instead?:
=SUMPRODUCT((MSA=O3)*(Type=P3)*Revenue)
This does not need to be array-entered and is slightly faster.
 
Back
Top