Forum Discussion
Kirsty Lowe
May 01, 2018Copper Contributor
Removing duplicates when using TEXTJOIN
Hi, I am using TEXTJOIN to being into one cell entries from a separate column, where I am ignoring empty cells and separately by &. This works fine. However, I can have duplicate values in an indi...
- May 01, 2018
Kristy,
I got the below formula for you thanks to this amazing https://www.youtube.com/watch?v=QJ2O07EB80Q!
=TEXTJOIN(" & ",TRUE,IF(MATCH(A1:A6,A1:A6,0)=ROW(A1:A6)-ROW(A1)+1,A1:A6,""))
Please find it in the attached file.
Regards
Josh_Waldner
Nov 22, 2021Brass Contributor
you just might want to use this formula: =TEXTJOIN(" & ",TRUE,UNIQUE(F:F,FALSE,FALSE))
- SergeiBaklanJan 05, 2023Diamond Contributor
To improve performance using entire column I'd modify as
=TEXTJOIN(" & ",,UNIQUE( TOCOL( F:F,3)) )
- KelstoneNov 04, 2022Copper Contributor
THIS!!! Simple, effective, winning!