Is it possible to add empty elements in a TEXTJOIN function?
I have text strings in cells A1:A5
TEXTJOIN(",",, A1,A2,A3,A4,A5) creates the following text string:
Text1, Text2, Text3, Text4,Text5
I want the ability to introduce empty strings in between each element. And I want the user to have the option to make this variable in nature. So say I wanted 2 empty elements as follows:
Text1, EMTPY, EMTPY, Text2, EMTPY, EMTPY, Text3, EMTPY, EMTPY, Text4, EMTPY, EMTPY, Text5 EMTPY, EMTPY,
I don't want create the spaces in the range that feeds the function (i.e. I want to use range A1:A5 and not insert rows with empty data). I want to introduce spaces after-the-fact.
Note this does not have to say EMPTY it could also be spaces:
Text1, , , Text2, , , Text3, , , Text4, , , Text5 , ,
Thanks
I have text strings in cells A1:A5
TEXTJOIN(",",, A1,A2,A3,A4,A5) creates the following text string:
Text1, Text2, Text3, Text4,Text5
I want the ability to introduce empty strings in between each element. And I want the user to have the option to make this variable in nature. So say I wanted 2 empty elements as follows:
Text1, EMTPY, EMTPY, Text2, EMTPY, EMTPY, Text3, EMTPY, EMTPY, Text4, EMTPY, EMTPY, Text5 EMTPY, EMTPY,
I don't want create the spaces in the range that feeds the function (i.e. I want to use range A1:A5 and not insert rows with empty data). I want to introduce spaces after-the-fact.
Note this does not have to say EMPTY it could also be spaces:
Text1, , , Text2, , , Text3, , , Text4, , , Text5 , ,
Thanks