Forum Discussion
tmk2015
Apr 24, 2020Copper Contributor
how do I get TEXTJOIN for excel
Can I get the TEXTJOIN function for Microsoft Office Professional Plus 2016? When I go to formulas it is not a choice.
jukapil
Apr 24, 2020MCT
As this function is available in Office 365 only, MS Office 2016 Package does not have this. Alternatively, you should add below VBA code into your VBA module and then use =jointext("Excel range") and enter i.e. =jointext(A1:A5) Function jointext(Ref As Range, Separator As String) As String Dim Cell As Range Dim Result As String For Each Cell In Ref Result = Result & Cell.Value & Separator Next Cell jointext = Left(Result, Len(Result) - 1) End Function Regards Kapil WWW.Excelsirji.Com