Struggling for a solution

  • Thread starter Thread starter Baz
  • Start date Start date
B

Baz

Help!

I'm trying to find a formula that would work out this problem:

Column "A" contains either Y or L and column "B" contains T or any
other letter

I need the solution to fprmulate if any cell in column A = Y and any
cell in column B contains T.

Y & T must always be together.:(
 
Baz,

Try a formula along these lines in a cell to generate a value of 0
(there are no rows with both a Y in column A and a T in column B) or
something other than zero (the result giving the count or rows matching
the criteria).


=SUMPRODUCT(--(A$1:A$13="Y"),--(B$1:B$13="T"))
 
Baz,

Try a formula along these lines in a cell to generate a value of 0
(there are no rows with both a Y in column A and a T in column B) or
something other than zero (the result giving the count or row
matching
the criteria).


=SUMPRODUCT(--(A$1:A$13="Y"),--(B$1:B$13="T"))

Thanks very much!!!

But now i need to go a step further if column B contains MT, NT1, T et
I need it to count these but exclude if contains NET, AUTO.

Is this possible along the lines of "*T*" but excludes "AUTO" or "NET
:confused
 

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