Hi,
In Excel 2016 there is a nifty new formula called TextJoin which I have used to concatenate a bunch of cells together where an adjacent cell matches a unique criteria.
I'm trying to replicate this in Excel 2013 without success. I have found a VBA formula to use as an add in for Excel but it doesn't seem to work when you use an array range. It gives a #VALUE! error when ran with ctrl-shift-enter.
I'm not sure if I can post someone else's VBA from another site (but I will say that searching Google for "Lookup and return multiple values concatenated into one cell" will assist).
Is anyone able to help with a TextJoin VBA function that I can put in and use with Excel 2013 so I can use it with an array formula like this...
Many thanks for your help ninja's and all.
In Excel 2016 there is a nifty new formula called TextJoin which I have used to concatenate a bunch of cells together where an adjacent cell matches a unique criteria.
I'm trying to replicate this in Excel 2013 without success. I have found a VBA formula to use as an add in for Excel but it doesn't seem to work when you use an array range. It gives a #VALUE! error when ran with ctrl-shift-enter.
I'm not sure if I can post someone else's VBA from another site (but I will say that searching Google for "Lookup and return multiple values concatenated into one cell" will assist).
Is anyone able to help with a TextJoin VBA function that I can put in and use with Excel 2013 so I can use it with an array formula like this...
Code:
{=TEXTJOIN(", ",TRUE,IF(A2='Sheet 2'!$A:$A,'Sheet 2'!$C:$C,""))}
Many thanks for your help ninja's and all.