0

I’m hoping someone can help me with getting the correct syntax for this formula.

=if(and(panel_quantity>0),OR(c1:z1)<>””),”yes”,”no”)

Below is an explanation For what I want the formula to achieve.

If Panel_Quantity is greater than zero AND if and any of the cells in the range of C1:Z1 contains any text/value/formula then cell value is “yes”, otherwise “no”.

Thanks.

2
  • Not at my pc now but I don't think you need the or connection, your english version of the statement doesn't have an or so why should the implementation Commented Sep 12, 2020 at 1:25
  • the parenthesis after"" , delete it Commented Sep 12, 2020 at 1:41

1 Answer 1

2

Try this:

=if(and(panel_quantity>0, counta(c1:z1) > 0),"yes","no")
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.