Welcome back to the Airtable community!
There are multiple ways of doing this, especially getting the commas and spaces right. Here is my current favorite methods.
REGEX_REPLACE(
CONCATENATE(
IF({A}, {A} & ", "),
IF({B}, {B} & ", "),
IF({C}, {C} & ", "),
IF({D}, {D})
),
", $",
""
)
Thank you so much @kuovonne !!!
Welcome back to the Airtable community!
There are multiple ways of doing this, especially getting the commas and spaces right. Here is my current favorite methods.
REGEX_REPLACE(
CONCATENATE(
IF({A}, {A} & ", "),
IF({B}, {B} & ", "),
IF({C}, {C} & ", "),
IF({D}, {D})
),
", $",
""
)
Hi I have field
SUM(Capacity-CONCATENATE({🪑 Attendees}))
Column capacity has number 3
Column Atendees has entries A B
I need tu by result 1 as (3-2)=1
Please any Idea ?