Forum Discussion

info-'s avatar
info-
Copper Contributor
Feb 05, 2021

Combine Cells

I need to combine cells E2:E56 

I have tired & functions and concat, how would I create the formula to combine these 55 cells into 1? 

4 Replies

  • info- 

    If you simply want to concatenate all the values:

     

    =CONCAT(E2:E56)

     

    If you want to concatenate them with a separator, e.g. value1, value2, value3, ...:

     

    =TEXTJOIN(", ",TRUE,E2:E56)

     

    Both formulas work only if you have Excel 2019 or Excel in Microsoft 365.

  • Riny_van_Eekelen's avatar
    Riny_van_Eekelen
    Platinum Contributor

    info- If you are on a recent Excel version (2019 or later) use:

     

    =TEXTJOIN("",TRUE,E2:E56)

     

     Choose whatever delimiter you want and put it between the quotation marks. Otherwise leave it as above.

Resources