May 09, 2019 08:13 PM
I have 3 Checkbox Fields :
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
Solved! Go to Solution.
May 09, 2019 09:17 PM
You were super close…
IF(
AND(
Workout,
Meditate,
{Eat Healthy}
),
"True",
"False"
)
May 09, 2019 09:17 PM
You were super close…
IF(
AND(
Workout,
Meditate,
{Eat Healthy}
),
"True",
"False"
)
May 10, 2019 08:59 AM
Thank you @Jeremy_Oglesby, that’s exactly what I needed. I appreciate your help