Concatenate Formula every Nth Cells

pyroto

New Member
Joined
Jun 21, 2018
Messages
16
I've been at this for hours and wondering if anyone could help.
I am trying to do the following:

Cell H4: =CONCATENATE(C4:C7)
Cell H19 = CONCATENATE(C19:C22)
etc.

So every 15 cells in Column H(starting at H4) shows the concatenate of the the 4 cells every 15 cells in Column C


Column CColumn DColumn EColumn FColumn GColumn H
1
2
3
4BobBobJerrySusanJordan
5Jerry
6Susan
7Jordan
8Grace
9Justin
10Mathew
11Lily
12Carmen
13Kim
14Tyson
15Curtis
16Peter
17Jill
18Karen
19KaleKaleHarryJoeBrison
20Harry
21Joe
22Brison

<tbody>
</tbody>
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I would alter it a little so that if rows are added deleted above the data, the formulas don't start giving unexpected results.
In H4, copied down
=IF(MOD(ROWS(H$4:H4),15)=1,C4&C5&C6&C7,"")
 
Upvote 0

Forum statistics

Threads
1,216,971
Messages
6,133,813
Members
449,835
Latest member
vietoonet

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top