Forum Discussion
info-
Feb 05, 2021Copper Contributor
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
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_EekelenPlatinum 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.
- info-Copper Contributor
Does that work for text as well? Riny_van_Eekelen
- Riny_van_EekelenPlatinum Contributor
info- Yes!