Excel Functions Textjoin VS Concat

JulieBunavicz

New Member
Joined
Oct 9, 2023
Messages
10
Office Version
  1. 365
Platform
  1. Windows
General Question

Anyone know if it makes a difference to combine cells with TEXTJOIN or CONCAT? Below are examples I’ve found useful as a Data Analyst.

=TEXTJOIN( " ", TRUE, A2:B2, TEXT(C2, "mm/dd/yyyy") ) ---Same as below
=TEXTJOIN( " ", TRUE, TEXT(S2, "mm/dd/yyy"), TEXT(T2, "hh:mm") ) --with time and date
=D8&" "&AY8&" ("&TEXT(AT8,"mm/dd/yyyy")&")" ---Same as above

Kind regard,

Julie Bunavicz
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
CONCAT will combine all the provided strings together.
TEXTJOIN will place the specified delimiter between all the provided strings.

If you want a space between everything, you have to add it in every time with CONCAT.

=CONCAT("1","2","3") = 123
=CONCAT("1","-","2","-","3") = 1 2 3
=TEXTJOIN("-",TRUE,"1","2","3") = 1 2 3
 
Upvote 0

Forum statistics

Threads
1,215,089
Messages
6,123,058
Members
449,091
Latest member
ikke

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