Search and Display Formula

  • Thread starter Thread starter koba
  • Start date Start date
K

koba

Hi

Could somebody please help me develop a formula for the following
problem?

I have a formula which some nice person here developed for me

=IF(ISNUMBER(SEARCH("HD",A8)),IF(D8>D7,"GOOD","BAD"),"NOT HD")

But now I need to extend on it. What I need is if A8 contains HD and D8
is greater than D7 by $50 display “GOOD” otherwise display “BAD”.
Otherwise if there is no HD display NOT HD

Please help

Much Appreciated

Andrew
 
Maybe:

=IF(ISNUMBER(SEARCH("HD",A8)),IF(D8>D7+50,"GOOD","BAD"),"NOT HD")

Regards
Rowan
 

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