Hey @Kelly_Vorrasi1!
Here's a fun formula that dynamically summarizes your checkbox fields and provides return values based on what's currently provided:
IF(
AND(
{LAS Art}, {BPO Art}, {IT Art}, {JP Art}, {POL Art}, {FR Art}),
"✅ All Fields Completed",
IF(
AND(
NOT({LAS Art}),
NOT({BPO Art}),
NOT({IT Art}),
NOT({JP Art}),
NOT({POL Art}),
NOT({FR Art})
),
"❌ Missing All Fields",
TRIM(
"Missing Fields:\n" &
IF(
NOT({LAS Art}),
"- LAS Art\n"
)
&
IF(
NOT({BPO Art}),
"- BPO Art\n"
)
&
IF(
NOT({IT Art}),
"- IT Art\n"
)
&
IF(
NOT({JP Art}),
"- JP Art\n"
)
&
IF(
NOT({POL Art}),
"- POL Art\n"
)
&
IF(
NOT({FR Art}),
"- FR Art\n"
)
)
)
)Here's what it looks like in Airtable:

Everything is pretty cleanly nested so that you can extract any key parts of the formula if you'd like to tweak things around to fit your needs.
Always happy to answer any questions about the formula or how it works.