TEXTJOIN only thw name/words ones

thoart

New Member
Joined
Feb 6, 2017
Messages
16
Hi

I was wondering if there is possible to make a TEXTJOIN formula to only pick up the name one time? Ex; A1=Mark A2=Robert A3=Robert. Then the cell with the TEXTJOIN formula should only have Mark, Robert. I have made this formula but need help with my problem :) =TEXTJOIN(",",TRUE,O76:O81)
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
TEXTJOIN does not have anything in it that allows you to check for duplicates.
You would either need to remove the duplicates first, come up with some other formula, or create your own process to do it using VBA.
 
Upvote 0
Hi

Try this array formula:

=TEXTJOIN(",",TRUE,IFERROR(IF(MATCH(A1:A10,A1:A10,0)=ROW(A1:A10)-ROW(A1)+1,A1:A10,""),""))

This is an array formula, you have to confirm it with CTRL-SHIFT-ENTER and not just ENTER.
 
Upvote 0

Forum statistics

Threads
1,215,516
Messages
6,125,280
Members
449,220
Latest member
Excel Master

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top