Help

Re: Formula = True IF multiple Checkboxes = True

Solved
Jump to Solution
634 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Greyson
6 - Interface Innovator
6 - Interface Innovator

I have 3 Checkbox Fields :

  1. Workout
  2. Meditate
  3. Eat Healthy

If all 3 Checkbox Fields are checked (True), I want a Formula Field to equal True so I can set the color for that row as Green

Here’s my broken formula :

IF(AND(Workout, Meditate, Eat Healthy) True, False)

Thank you in advance

1 Solution

Accepted Solutions
Jeremy_Oglesby
14 - Jupiter
14 - Jupiter

You were super close…

IF(
   AND(
      Workout,
      Meditate,
      {Eat Healthy}
   ),
   "True",
   "False"
)

See Solution in Thread

2 Replies 2
Jeremy_Oglesby
14 - Jupiter
14 - Jupiter

You were super close…

IF(
   AND(
      Workout,
      Meditate,
      {Eat Healthy}
   ),
   "True",
   "False"
)

Thank you @Jeremy_Oglesby, that’s exactly what I needed. I appreciate your help