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

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
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,215,785
Messages
6,126,887
Members
449,347
Latest member
Macro_learner

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