Skip to main content

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

You were super close…


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

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