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. ...
- Jun 17, 2020
SergeiBaklan
Jun 17, 2020Diamond Contributor
- math_gJun 17, 2020Copper 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...- SergeiBaklanJun 17, 2020Diamond 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