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?
HansVogelaar
Feb 05, 2021MVP
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.