Forum Discussion
saravana0306
Jun 27, 2019Copper Contributor
textjoin issues
Hello Everyone , I have the text join formula to combine a series of text in a row. But the cells have a vlookup formula to get data from another sheet. When try to join the text resulted in t...
Detlef_Lewin
Jun 27, 2019Silver Contributor
My guess would be:
=TEXTJOIN(" | ";TRUE;IF(COLUMN(F4:Y4)-COLUMN($F4)+1=MATCH(F4:Y4;F4:Y4;0);F4:Y4;""))
SergeiBaklan
Jun 27, 2019Diamond Contributor
I'd wrap by IFERROR
=TEXTJOIN(" | ",TRUE,IFERROR(IF(COLUMN(F4:Y4)-COLUMN($F4)+1=MATCH(F4:Y4,F4:Y4,0),F4:Y4,""),""))