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 the cells by the vlookup formula, the formula of textjoin does not work.
Please see the image i have added a better understanding .
Text Join : =TEXTJOIN(" | ";TRUE;IF(COLUMN(F4:Y4)=MATCH(F4:Y4;F4:Y4;0);F4:Y4;""))
Formula in the cells :=IFNA(VLOOKUP($A4&COLUMNS(F3:$F4);'Reception '!$M$2:$N$50000;2;0);"")
Help please
10 Replies
- Detlef_LewinSilver Contributor
My guess would be:
=TEXTJOIN(" | ";TRUE;IF(COLUMN(F4:Y4)-COLUMN($F4)+1=MATCH(F4:Y4;F4:Y4;0);F4:Y4;""))- SergeiBaklanDiamond Contributor
I'd wrap by IFERROR
=TEXTJOIN(" | ",TRUE,IFERROR(IF(COLUMN(F4:Y4)-COLUMN($F4)+1=MATCH(F4:Y4,F4:Y4,0),F4:Y4,""),"")) - saravana0306Copper Contributor
Thanks much for the time . Unfortunately, this one does not work as well.
Do you think it is because the there is some formula already there in the cell ?
- Detlef_LewinSilver Contributor