Multiple array formula using 'does not equal

  • Thread starter Thread starter Shazaxacpcc
  • Start date Start date
S

Shazaxacpcc

I need to write a sumproduct formula whre one of the arrays needs a 'does not
equal' item. Previously with 'equals' items the formula read:

=sumproduct(--(compiled!$A$2:$A$50="abc"),--(Compiled!$G$2:$G$50="L"),--(Compiled!$F$2:$F$50>0))

This gave me the number of entries that were abc with an L entry and a value
more than 0

What I want to do is to return number of entries that are abc with an entry
other than L (it could be more than 1 other entry) with a value of more than 0

Any assistance gratefully accepted.
 
What I want to do is to return number of entries that are abc with an entry
other than L (it could be more than 1 other entry) with a value of more than 0

Think you just need to change the centre term to:
--(compiled!$G$2:$G$50<>"L")
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:18,500 Files:362 Subscribers:59
xdemechanik
---
 
Since you say,
<<<"with an *entry* other than L (it could be more than 1 other entry)">>>
<emphasis mine>
I assume a blank (empty) Column G *will not* meet your criteria,

Try:

=sumproduct(--(compiled!$A$2:$A$50="abc"),--(Compiled!$G$2:$G$50<>""),--(Com
piled!$G$2:$G$50<>"L"),--(Compiled!$F$2:$F$50>0))
 

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