Forum Discussion
math_g
Jun 16, 2020Copper Contributor
How can i sum up a Textchain in Blocks of 4 and pull down the formula?
Hi,
I would like to display the text from a column (always 4 rows) in a cell and continue this in the cell below.
E.g: Show the text from A1 to A4 in B1, A5 to A8 in B2, A9 to A12 in B3 etc.
I would like to display the text from a column (always 4 rows) in a cell and continue this in the cell below.
E.g: Show the text from A1 to A4 in B1, A5 to A8 in B2, A9 to A12 in B3 etc.
The file has almost 1000 rows, so I would like to be able to pull down the formula in column B then.
Is there any way to do this?
4 Replies
- Subodh_Tiwari_sktneerSilver Contributor
And if the TEXTJOIN function is available with the Excel version you are using, you may also try something like this...
=TEXTJOIN(,,OFFSET($A$1,(ROW()-1)*4,0,4)) - SergeiBaklanDiamond Contributor
- math_gCopper ContributorThis works pretty well but how do i have to modify the formular if i want to start in row 6?
E.g. A6 to A9 displayed in B6
A10 to A13 in B7
and so on...- SergeiBaklanDiamond Contributor
If you start from another row, we may keep that starting row as parameter in the cell (let say 6 in C1), formula could be
=CONCAT(INDEX(A:A,(ROW()-$C$1)*4+$C$1):INDEX(A:A,(ROW()-$C$1+1)*4+$C$1-1))or like