Return answer if.....

  • Thread starter Thread starter Pat
  • Start date Start date
P

Pat

=IF(K14>L14,"Low stock","")

I want to add into the above formula a condition where if J14 has a value
greater than 0 then return the message "Low stock"
 
Having re-examined the problem I am afraid I have explained the problem
incorrectly.

=IF(K14<=L14,"Low stock","")

If I could include into the formula a condition that "Low stock" will only
be returned if J14 is greater than L14
 
Pat said:
Having re-examined the problem I am afraid I have explained the problem
incorrectly.

=IF(K14<=L14,"Low stock","")

If I could include into the formula a condition that "Low stock" will only
be returned if J14 is greater than L14
I think this is what you want.
=IF(AND(K14>L14,J14>L14),"Low stock","")

/Fredrik
 

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