You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Numbers Formula

Please could anyone help with numbers formula, I am trying to create a formula which will look at a range of cells and if any value in selected cells is equal to or greater than 1 but less than 15 enter yes. Thanks

Posted on Oct 11, 2019 5:11 AM

Reply
Question marked as Top-ranking reply

Posted on Oct 11, 2019 5:57 AM

sunglasses ron wrote:

if I had values in columns A,B,C,D and i wanted the formula to check each cell across a row and return a yes or no if any one of the four cells complies with greater than or equal to 1 and less than 15.


Hi Ron,


In that case you could do something like this:



In F2, filled down:


=IF(COUNTIFS(A2:E2,">1",A2:E2,"<15")>0,"yes","no")


If you want to include 1 and 15 in the "yeses" then you would change the formula slightly, to this:


=IF(COUNTIFS(A2:E2,">=1",A2:E2,"<=15")>0,"yes","no")



SG

4 replies
Question marked as Top-ranking reply

Oct 11, 2019 5:57 AM in response to sunglasses ron

sunglasses ron wrote:

if I had values in columns A,B,C,D and i wanted the formula to check each cell across a row and return a yes or no if any one of the four cells complies with greater than or equal to 1 and less than 15.


Hi Ron,


In that case you could do something like this:



In F2, filled down:


=IF(COUNTIFS(A2:E2,">1",A2:E2,"<15")>0,"yes","no")


If you want to include 1 and 15 in the "yeses" then you would change the formula slightly, to this:


=IF(COUNTIFS(A2:E2,">=1",A2:E2,"<=15")>0,"yes","no")



SG

Numbers Formula

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.