Struggling for a solution

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.:(
 
R

Randall.Senn

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"))
 
B

Baz

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
 
Top