OPPOSITE FORMULA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I was provided this formula to not look for the word Repair Clin:

=IF(O31="","",IF(AND(TRIM(B31)<>"Closed",NOT(ISNUMBER(SEARCH("Repair
Clin",S31)))), O31+ROW()/10^10,""))

Now, I need the opposite. I want it to look for the word Warranty item.

Also, can anyone recommend a good Excel book.

Thanks
 
Hi!

Check out this book list:

http://contextures.com/xlbooks.html

As for your "opposite" formula:

That looks like one of Max's formulas?

Maybe this:

=IF(O31="","",IF(AND(TRIM(B31)<>"Closed",ISNUMBER(SEARCH("Warranty
item",S31))), O31+ROW()/10^10,""))

Biff
 
Max,

I thank you again for the formula and the website. One last one and I think
the worksheet/book will be complete:

Using the same criteria, delete column B from the equation.
 
Using the same criteria, delete column B from the equation.

Try:

=IF(O31="","",IF(ISNUMBER(SEARCH("Warranty item",S31)),O31+ROW()/10^10,""))
 
That did it. Again thank you for the knowledge. With the web site I hope to
become more proficient.
 

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