Hi Folks,
I'm currently struggling with a formula. I'm trying to track the progress of a project that requires an asset to be translated to several languages. I created checkboxes for each language and for when those assets were QC'd. I'd love to be able to consolidate all the checkboxes to a single text field so I can easily see which languages have been completed and QC'd. I've been able to create a formula to pull a checkbox per language but now I'm adding the second step of QC and my IF AND formula isn't working. Below is a sample of the formula that worked and the one that isn't once I added the second step.
TRIM(IF(
({BR Art}),
"BR, "
)
&
IF(
({DE Art}),
"DE, "
)
&
IF(
({FR Art}),
"FR, "
)
&
IF(
({IT Art}),
"IT, "
)
&
IF(
({JP Art}),
"JP, "
)
&
IF(
({MX Art}),
"MX "
)
)
The two step I was testing out
IF(
AND(
{BR Art},
{BR Art QC}
),
"BR, ",
IF(
AND(
{MX Art},
{MX Art QC}
),
"MX, ",
IF(
AND(
{IT Art},
({IT Art QC}
),
"IT",
BLANK()
)
)
)