superbeast326

Board Regular
Joined
Nov 12, 2011
Messages
132
I have a list of eight names.

Is there a formula where I can make the first name repeat from a1:a6, second a7:a12, so on and so forth.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
In this context, INDEX is merely used to return a reference from a grid according to a row coordinate and a column coordinate.

So assume you have A1:Z10

If the row coord is 1 and the column coord is 1 then this will return A1.

If the row coord is 2 and the column coord is 3 then this will return C2.

I hope this makes sense.
 
Upvote 0
One more question, please take the time to answer it.

Is there a formula that I can use to repeat 1,2,3,4,5,6 eight times down another column?
 
Upvote 0
To repeat 1;2;3;4;5;6, in A1 copied down:

=INT(MOD((ROW()-1)/6,6)+1)

how many times it repeats depends on how far you copy it down...
 
Upvote 0
Just one more quick question, is it possible to concatenate all the odd numbered names into one text and then concatenate all the even numbered names into another text?
 
Upvote 0

Forum statistics

Threads
1,215,883
Messages
6,127,552
Members
449,385
Latest member
KMGLarson

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