Substitution for TEXTJOIN

shahdelsol

Active Member
Joined
Jul 21, 2009
Messages
276
Office Version
  1. 365
Platform
  1. Windows
I am using the new Excel formula " TEXTJOIN" and works great however this formula only works on the new version of office 360. What formula can I replace this with on older version of Excel? Does anyone know? Thanks in advance.


{=TEXTJOIN(",",0,IF(J20:J23>0,H20:H23,""))}
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi, if you are only concatenating a few cells an alternative would be:

=MID(IF(J20>0,","&H20,"")&IF(J21>0,","&H21,"")&IF(J22>0,","&H22,"")&IF(J23>0,","&H23,""),2,999)

As you can see though, this quickly gets unmanageable as the number of cells increases - the other alternative is to use a custom user-defined function.
 
Upvote 0
Thanks for your solution. Yes it does get unmanageable and I do have about 14 cells to do this for but sounds like I may not have any better option.
 
Upvote 0
I wasn't able to find anything. Is there a specific way to do search here?
 
Upvote 0
I wasn't able to find anything. Is there a specific way to do search here?

Here is the code:

Code:
Function aconcat(a As Variant, Optional sep As String = "") As String
' Harlan Grove, Mar 2002
    Dim y As Variant


    If TypeOf a Is Range Then
        For Each y In a.Cells
            aconcat = aconcat & y.Value & sep
        Next y
    ElseIf IsArray(a) Then
        For Each y In a
            aconcat = aconcat & y & sep
        Next y
    Else
        aconcat = aconcat & a & sep
    End If


    aconcat = Left(aconcat, Len(aconcat) - Len(sep))
End Function

To use it,
1. With your workbook open press ALT+F11 to open the VBE
2. Click Insert > Module
3. Copy the code above into the code window, top right.
4. Close the VBE
5. Save your workbook as a macro enabled workbook (.xlsm)

One implementation of the formula would then be:

=MID(aconcat(IF(J20:J23>0,", "&H20:H23,"")),3,999)

Which is an array formula and needs confirming with CTRL+SHIFT+ENTER.
 
Upvote 0
Thank you so much. This works great.



Here is the code:

Code:
Function aconcat(a As Variant, Optional sep As String = "") As String
' Harlan Grove, Mar 2002
    Dim y As Variant


    If TypeOf a Is Range Then
        For Each y In a.Cells
            aconcat = aconcat & y.Value & sep
        Next y
    ElseIf IsArray(a) Then
        For Each y In a
            aconcat = aconcat & y & sep
        Next y
    Else
        aconcat = aconcat & a & sep
    End If


    aconcat = Left(aconcat, Len(aconcat) - Len(sep))
End Function

To use it,
1. With your workbook open press ALT+F11 to open the VBE
2. Click Insert > Module
3. Copy the code above into the code window, top right.
4. Close the VBE
5. Save your workbook as a macro enabled workbook (.xlsm)

One implementation of the formula would then be:

=MID(aconcat(IF(J20:J23>0,", "&H20:H23,"")),3,999)

Which is an array formula and needs confirming with CTRL+SHIFT+ENTER.
 
Upvote 0
Hi, if you are only concatenating a few cells an alternative would be:

=MID(IF(J20>0,","&H20,"")&IF(J21>0,","&H21,"")&IF(J22>0,","&H22,"")&IF(J23>0,","&H23,""),2,999)

As you can see though, this quickly gets unmanageable as the number of cells increases - the other alternative is to use a custom user-defined function.
Hi, this thread is been awhile but may I know how to make this formula suits mine?

=TEXTJOIN(", ",1,FILTER(Tags!$A$2:$A$12,ISNUMBER(SEARCH(" "& Tags!$B$2:$B$12&" "," "&R2&" "&S2&" ")),""))
 
Upvote 0
Hi, this thread is been awhile but may I know how to make this formula suits mine?

=TEXTJOIN(", ",1,FILTER(Tags!$A$2:$A$12,ISNUMBER(SEARCH(" "& Tags!$B$2:$B$12&" "," "&R2&" "&S2&" ")),""))
This is a duplicate to the conversation going on in this thread: How to use keyword to tag every row automatically

In future, please do not post the same question multiple times. See Forum Rules (#12).
Please just continue in the existing thread.
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,921
Members
449,094
Latest member
teemeren

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