Hi community,
i have this formula. Its combining all cells of a column. How do i need to modify it, so it does remove all duplicates as well?
Concatenate(FormulaMap(Connector.ContactTags, CurrentValue.ToText() + "; "), ββ)
Thx alot.
Hi community,
i have this formula. Its combining all cells of a column. How do i need to modify it, so it does remove all duplicates as well?
Concatenate(FormulaMap(Connector.ContactTags, CurrentValue.ToText() + "; "), ββ)
Thx alot.
Hey there
Probably just add .Unique()
to Connector.ContactTags
Thx Rick. I still cantβ make it to work- i am very new with coda. Can you write the whole formula?
Oh alright, welcome to Coda!
I was thinking like this
Concatenate(FormulaMap(Connector.ContactTags.Unique(), CurrentValue.ToText() + "; "), "")
You can also probably make the formula cleaner, like this
Connector.ContactTags.Unique().Join("; ")
@Rickard_Abraham Itβs strange. Everything what ChatGPT gave me and both of your formulas donβt create a error, but the word count stays always the sameβ¦
Solution:
unique(split(Concatenate(FormulaMap(Connector.[Your Column], CurrentValue.ToText() + β; β), ββ),β;β))
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.