Loking for the truth

D

Decreenisi

I am creating a spreadsheet to track rejects.
cell L2 has the following code =IF(I6>0,ISNA(MATCH('Ticket
Query'!$I6,'Ticket Query'!$B$6:'Ticket Query'!$B$1000,FALSE)),""). This
returns a value of True or False.
Cell J2 has a response I.D of either AF, CON, NFF
I want a code in Cell M2 to look cell L2, if that has a value of TRUE,
then to look at Cell J2, if that has either AF, CON, or NFF. Then it
returns a value of TRUE

Anyone any ideas !!!!!
 
B

Bob Phillips

=AND(L2,ISNUMBER(MATCH(J2,{"AF","CON","NFF"},0)))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
R

Roger Govier

Hi

Try
=IF(AND(OR(J2="AF",J2="CON",J2="NFF"),L2=TRUE),"TRUE","FALSE")

Incidentally the following
=IF(I6>0,ISNA(MATCH('Ticket Query'!$I6,'Ticket Query'!$B$6:'Ticket
Query'!$B$1000,FALSE)),"")
could be simplified to
=IF(I6>0,ISNA(MATCH('Ticket Query'!$I6,'Ticket
Query'!$B$6:$B$1000,FALSE)),"")
you don't need to specify the Sheet name twice in defining the range.
 

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

Similar Threads

Looking for the truth !! 2
Stuck on formula 1
formula issue between cells 4
Bold items within text string 7
Comparing two columns 13
Nesting 2
Locking specific cells 1
Multiple functions/formulas... 3

Top