In your formula, where it says {Account Status}
, change that to:
{Account Status} & ""
In your formula, where it says {Account Status}
, change that to:
{Account Status} & ""
That worked! Still getting the hang of formulas and I want to understand the logic here, i.e. what I was doing wrong. Would you mind explaining?
Do the records in your Engagements have a field that determines if the are active or not? If so, I recommend using a conditional rollup where you rollup only active engagements.
IF(
COUNTALL(values) > 0,
"active",
"inactive"
)
Do the records in your Engagements have a field that determines if the are active or not? If so, I recommend using a conditional rollup where you rollup only active engagements.
IF(
COUNTALL(values) > 0,
"active",
"inactive"
)
Yes, they do. In my Engagements table, each shows where they are in the pipeline. Then based on that, they are either a Lead, Closed, [on] Hold, or Archived. Finally, based on those, the engagement is either Active or Inactive status.

In my Accounts table, I did a rollup of engagements for each account. When I applied the conditional rollup formula, linking to the Engagements table and the Status field, it yielded ‘active’ on all.

Yes, they do. In my Engagements table, each shows where they are in the pipeline. Then based on that, they are either a Lead, Closed, [on] Hold, or Archived. Finally, based on those, the engagement is either Active or Inactive status.

In my Accounts table, I did a rollup of engagements for each account. When I applied the conditional rollup formula, linking to the Engagements table and the Status field, it yielded ‘active’ on all.

The formula that I provided is not the condition. You need to set the condition in the configuration of the rollup, so only active engagements are rolled up.
That worked! Still getting the hang of formulas and I want to understand the logic here, i.e. what I was doing wrong. Would you mind explaining?
Sure!
The logic here is that the “FIND” function only searches through text strings, but a Rollup is actually an array of values.
So, by adding the extra quotation mark at the end, Airtable ends up converting the array into a text string.