Assign people to groups of 9

y3tter

Board Regular
Joined
Nov 11, 2012
Messages
147
Is there a way in a new column to group people in groups of 9? The first 9 people would be in group 1, next 9 people would be in group 2, etc?
Person 11
Person 21
Person 31
Person 41
Person 51
Person 61
Person 71
Person 81
Person 91
Person 102
Person 112
Person 122
Person 132
Person 142
Person 152
Person 162
Person 172
Person 182
Person 193
Person 203

<tbody>
</tbody>


edit, this should have just been 2 columns
 
Last edited:

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
How about, in B1 copied down
=ROUNDUP(ROW()/9,0)
 
Last edited:
Upvote 0
Please let me know if it works for you...
PersonGroup
Alice1
Barry1
Carl1
Denese1
Edward1
Florance1
Gary1
Hellen1
Ian1
Jane2
Keith2

<tbody>
</tbody>
In B2 (Alice) just put a 1
In C2 (Barry) place and copy down.
Code:
=IF(MOD(ROW(A3) -1,9) = 1,B2+1,B2)
This will add 1 each ninth person.
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,620
Messages
6,120,559
Members
448,970
Latest member
kennimack

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