Skip to main content
Solved

Formula = True IF multiple Checkboxes = True

  • May 10, 2019
  • 2 replies
  • 36 views

Forum|alt.badge.img+2

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

Best answer by Jeremy_Oglesby

You were super close…

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

2 replies

Forum|alt.badge.img+18

You were super close…

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

Forum|alt.badge.img+2
  • Author
  • Participating Frequently
  • May 10, 2019

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