Good afternoon,
I'm trying to create a nested formula in cell Y1 that will return the values of HIGH or LOW depending on a few criteria.
1) First off - I want the cell to return a blank value of nothing applies
2) Looking to have the value of HIGH or LOW returned depending on if the value in cell X1 is greater than 59%
3) Looking o have the value of HIGH returned if the contents of cell W1 is either "Dog", Cat" or Bird"
This is what I've come up with, but it's not working:
=IF(OR(ISNUMBER(SEARCH("Dog",W1)),ISNUMBER(SEARCH("Cat",W1)),ISNUMBER(SEARCH("Bird",W1))),"HIGH","LOW"),IF(X1="","",IF(X1>59%,"HIGH","LOW"))
Any help you can provide would be appreciated. Thank you.
I'm trying to create a nested formula in cell Y1 that will return the values of HIGH or LOW depending on a few criteria.
1) First off - I want the cell to return a blank value of nothing applies
2) Looking to have the value of HIGH or LOW returned depending on if the value in cell X1 is greater than 59%
3) Looking o have the value of HIGH returned if the contents of cell W1 is either "Dog", Cat" or Bird"
This is what I've come up with, but it's not working:
=IF(OR(ISNUMBER(SEARCH("Dog",W1)),ISNUMBER(SEARCH("Cat",W1)),ISNUMBER(SEARCH("Bird",W1))),"HIGH","LOW"),IF(X1="","",IF(X1>59%,"HIGH","LOW"))
Any help you can provide would be appreciated. Thank you.