Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

I am trying to get a box to check when specific conditions are met.

Hello,

I am trying to get a box in a cell to check (True) when three or more conditions are met. The conditions to be met are a box checked in the same row. ie if box 1 and box 2 and box 3 are checked (True) them check the box (True)

Here is what I have started it keep showing as invalid or unparseable

=IF(AND(Explorer@row = "true", Practitioner@row = "true", Professional@row = "true") > 0, 1, 0

Any help is greatly appreciated.

Best Answer

  • ✭✭✭✭✭
    Answer ✓

    I am sure there is a few ways but I never cared much for using and unless I had to, here is a pretty simple if statement with a count that should work as well if you want a different option.

    =IF(COUNTIF(Explorer@row:Professional@row, 1) = 3, 1, 0)

    Unchecked one:

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions