Team Generator
Table of Contents
1. Team Generator
This section describes how to create teams randomly. There are twenty names in column B and four teams in column E. There will be five team members in each team. In column C a team is randomly selected in each cell.
Excel 365 dynamic array formula in cell C2:
The formula above references values in cell E2:E5 which I first converted to an Excel defined table named Table1. This makes the formula dynamic meaning it recalculates automatically based on the number of entries in Table1.
The formula above spills values to cells below C2 as far as needed, a #SPILL error indicates that the cells below C2 are not empty. Delete nonempty cells and the formula works again.
Array formula in cell C2 for earlier Excel versions:
How to create an array formula
- Copy the aray formula above (Ctrl + c)
- Double press with left mouse button on cell B2
- Paste (Ctrl + v)
- Press and hold Ctrl + Shift simultaneously
- Press Enter
- Release all keys
If you made the above steps correctly the formula now has a beginning and ending curly bracket, like this:
{=array_formula}
Don't enter these characters yourself, they appear automatically.
Customize formula
COUNTIF($C$1:C1, $E$2:$E$5)<5 makes sure that each team has max five team members.
ROW($1:$4) gives a row number to each team. Example, if you have three teams, change it to ROW($1:$3) or the formula won't work.
Explaining formula in cell C2
Step 1 - Make sure that not more than 5 names have been assigned the same team
The COUNTIF function counts values based on a condition or criteria, the first argument contains an expanding cell reference, it grows when the cell is copied to cells below. This makes the formula aware of values displayed in cells above.
COUNTIF($C$1:C1, $E$2:$E$5)<5
becomes {0; 0; 0; 0}<5
and returns {TRUE; TRUE; TRUE; TRUE}.
Step 2 - Multiply with array containing row numbers
(COUNTIF($C$1:C1, $E$2:$E$5)<5)*(ROW($1:$4))
becomes {TRUE; TRUE; TRUE; TRUE}*{1;2;3;4}
and returns {1;2;3;4}
Step 3 - Extract random row number
The LARGE function returns the k-th largest number, k is calculated based on how many teams that have been shown up until this cell.
LARGE((COUNTIF($C$1:C1, $E$2:$E$5)<5)*(ROW($1:$4)), RANDBETWEEN(1, SUMPRODUCT(--(COUNTIF($C$1:C1, $E$2:$E$5)<5))))
SUMPRODUCT function returns the number of team names that have not yet been fully assigned to players.
LARGE({1;2;3;4}, RANDBETWEEN(1, SUMPRODUCT(--({TRUE; TRUE; TRUE; TRUE}))))
becomes LARGE({1;2;3;4}, 3)
and returns 3. This is a random number.
Step 4 - Return value
The INDEX function returns a value based on a cell reference and column/row numbers.
INDEX($E$2:$E$5, LARGE((COUNTIF($C$1:C1, $E$2:$E$5)<5)*(ROW($1:$4)), RANDBETWEEN(1, SUMPRODUCT(--(COUNTIF($C$1:C1, $E$2:$E$5)<5)))))
returns "Team C" in cell C2.
This article demonstrates how to generate teams of different sizes:
Recommended articles
JD asks in this post: Dynamic team generator Hi, what if we have different number of people per team? So in […]
The following shows you how to set up a dynamic scoreboard, enter results and the scoreboard is automatically recalculated:
Recommended articles
This article demonstrates a scoreboard, displayed to the left, that sorts contestants based on total scores and refreshes instantly each […]
2. Dynamic team generator
Mark G asks:
1 - I see you could change the formula to have the experssion COUNTIF($C$1:C1, $E$2:$E$5)<5 changed so the maximum number of team members looks to a cell (say E9) so the number of people per team could be easily changed eg COUNTIF($C$1:C1, $E$2:$E$5)<E9
2 - In (virtual) sailing team racing, competition is usually 3 vs 3, but could be adjusted to a 4 vs 4, 3 vs 2 or 4 vs 3 depending on the number of skippers available to race. Could the example be modified to assign a skipper to a team given these optimum arrangements? (eg for say 12 skippers entered it would do 2 sets of 3 vs 3, for 8 skippers it would do one 4 vs 4, etc)
Answer:
The image above demonstrates a worksheet containing Team names in an Excel defined table cell range F3:F7, you don't need to adjust cell references in the formula if you add or delete team names. It is dynamic and updates instantly.
Enter the number of members in each team in cell H3, the formula refreshes automatically. It randomly assigns teams to players, press F9 to refresh the formula output.
Array formula in cell D3:
To enter an array formula, type the formula in a cell then press and hold CTRL + SHIFT simultaneously, now press Enter once. Release all keys.
The formula bar now shows the formula with a beginning and ending curly bracket telling you that you entered the formula successfully. Don't enter the curly brackets yourself.
Copy cell D3 and paste it down as far as necessary.
Explaining formula in cell D3
Step 1 - Count previous values
The COUNTIF function counts values based on a condition or criteria, the first argument contains an expanding cell reference, it grows when the cell is copied to cells below. This makes the formula aware of values displayed in cells above. 0 (zero) indicates values that not yet have been displayed.
COUNTIF($D$2:D2, Table1[Teams])<$H$3
becomes
COUNTIF("Team", {"Team A"; "Team B"; "Team C"; "Team D"; "Team E"})<$H$3
becomes
{0;0;0;0;0}<3
and returns
{TRUE; TRUE; TRUE; TRUE; TRUE}
Step 2 - Create row numbers
This step is needed to create a sequence of numbers that will be used to get the correct value in a later step.
MATCH(ROW(Table1[Teams]),ROW(Table1[Teams]))
returns {1;2;... ;5}.
Step 3 - Multiply arrays
(COUNTIF($D$2:D2, Table1[Teams])<$H$3)*(MATCH(ROW(Table1[Teams]),ROW(Table1[Teams])))
returns {1;2;3;4;5}.
Step 4 - Extract random row number
The LARGE function returns the k-th largest number, LARGE( array , k). The second argument k is a random number from 1 to n.
LARGE((COUNTIF($D$2:D2, Table1[Teams])<$H$3)*(MATCH(ROW(Table1[Teams]),ROW(Table1[Teams]))), RANDBETWEEN(1, SUMPRODUCT(--(COUNTIF($D$2:D2, Table1[Teams])<$H$3))))
becomes LARGE({1;2;3;4;5}, 2) and returns 2. This is a random number between 1 and 5.
Step 5 - Return value
The INDEX function returns a value based on a cell reference and column/row numbers.
INDEX(Table1[Teams], LARGE((COUNTIF($D$2:D2, Table1[Teams])<$H$3)*(MATCH(ROW(Table1[Teams]),ROW(Table1[Teams]))), RANDBETWEEN(1, SUMPRODUCT(--(COUNTIF($D$2:D2, Table1[Teams])<$H$3)))))
becomes
INDEX(Table1[Teams], 2)
and returns "Team B" in cell D3.
Step 6 - Trap errors
The formula returns errors when all teams are populated, the IFERROR function converts the errors into a given value, in this case "-".
IFERROR(INDEX(Table1[Teams], LARGE((COUNTIF($D$2:D2, Table1[Teams])<$H$3)*(MATCH(ROW(Table1[Teams]),ROW(Table1[Teams]))), RANDBETWEEN(1, SUMPRODUCT(--(COUNTIF($D$2:D2, Table1[Teams])<$H$3))))), "-")
Random category
This article describes how to create a random playlist based on a given number of teams using an array formula. […]
This article demonstrates macros that create different types of round-robin tournaments. Table of contents Basic schedule - each team plays […]
JD asks in this post: Dynamic team generator Hi, what if we have different number of people per team? So in […]
Team generator category
JD asks in this post: Dynamic team generator Hi, what if we have different number of people per team? So in […]
Excel categories
20 Responses to “Team Generator”
Leave a Reply
How to comment
How to add a formula to your comment
<code>Insert your formula here.</code>
Convert less than and larger than signs
Use html character entities instead of less than and larger than signs.
< becomes < and > becomes >
How to add VBA code to your comment
[vb 1="vbnet" language=","]
Put your VBA code here.
[/vb]
How to add a picture to your comment:
Upload picture to postimage.org or imgur
Paste image link to your comment.
Contact Oscar
You can contact me through this contact form
1 - I see you could change the formula to have the experssion COUNTIF($C$1:C1, $E$2:$E$5)<5 changed so the maximum number of team members looks to a cell (say E9) so the number of people per team could be easily changed eg COUNTIF($C$1:C1, $E$2:$E$5)<E9
2 - In (virtual) sailing team racing, competition is usually 3 vs 3, but could be adjusted to a 4 vs 4, 3 vs 2 or 4 vs 3 depending on the number of skippers available to race. Could the example be modified to assign a skipper to a team given these optimum arrangements? (eg for say 12 skippers entered it would do 2 sets of 3 vs 3, for 8 skippers it would do one 4 vs 4, etc)
Mark G,
read this post: Dynamic team generator in excel
The is a fabulous tool! I used it for generating business simulation teams for a leadership development exercise at work. It worked great! Thank you so much!
Lisa Liszcz,
Thank you, I am happy you like it!
Great post, worked really well. Used it in business competition teams assignments. Appreciate sharing the knowledge, thanks so much !
Hi, what if we have different number of people per team? So in team A, there could be a max of 4 members but in team B there could be a max of 6 members etc. Is there some formula which can be used for this as well?
JD
Read this post: https://www.get-digital-help.com/2015/04/22/team-generator/
I have a question that may be more complex, but similar in theory.
This is for a team building exercise in my classroom.
I have 18 students. I want to generate groups of 3 that will allow each person to work with 2 unique people each time, with no repeats. I think this would mean 8 groups of 3, and 1 group of 2. Or, 7 groups of 3, and 1 group of 4.
Does this make sense? Can anyone help?
I have a question that may be more complex, but similar in theory.
This is for a team building exercise in my classroom.
I have 18 students. I want to generate groups of 3 that will allow each person to work with 2 unique people each time, with no repeats. I think this would mean 8 groups of 3, and 1 group of 2. Or, 7 groups of 3, and 1 group of 4.
Does this make sense? Can anyone help?
What if one of those names were to be absent, how would you write the code if say cell B4 was left blank an the generator didn't count them on a team?
Great tool! I'm trying to understand how the formula works. Could someone explain what this part of the formula does?
COUNTIF($C$1:C1, OFFSET($D$2:$D$5, 0, 0, $F$1))<$F$2
I understand what the COUNTIF and OFFSET commands do, but I don't get how they are being used in this part of the formula
I play a vball league where We'd like to have a spreadsheet that we plug the 16 names (8 guys + 8 girls) into, and it produces randomly generated teams based on the following:
1. We play 8 games
1. 2 guys and 2 girls per team
2. Cannot be paired with any another player more than 3 times.
3. It would be nice to be paired with all other players at least once during the 8 games.
Hi Oscar,
Do you have a template for 60 people to be randomly generated into teams of 4?
Thanks,
Vlad
[…] }); Check the below links.. Hope it might give you a solution. Team Generator in excel | Get Digital Help - Microsoft Excel resource […]
How would you change the name list to be dynamic such as 20 one time then 43 another and so on and then make teams of 4 with odd leftovers in a team ? Of course, no limit on number of teams just whatever it takes.
Hello,
I am trying to adjust the formula to have people for 6 teams. There are actually three teams of 2, but I want to assign specific positions for each team, so I am making it 6 teams in excel. For example, Team one would have a forward and a goalie, so in excel I am making it 2 teams, G1 and F1. I want to have 6 people, 6 teams, so everyone is assigned a position and team. I keep trying to edit the formula to let me do this but I keep getting #NUM! in the team assignment sections. What could I be doing wrong?
I change the COUNTIF($C$1:C1, $E$2:$E$5)<5 to <1
And I change the ROW($1:$4) to ROW($1:$6)
Any suggestions?
Thanks
Hi,
I plan to use something like this so people can sign up for football on a Google sheet. Is it possible to get a team member assigned a team at random as they sign up?
So 2 teams of 7, assigned Team A or B as they sign up, and also prevent it from recalculating on change.
Cheers!
Oliver
Hi Oliver
Is it possible to get a team member assigned a team at random as they sign up? So 2 teams of 7, assigned Team A or B as they sign up, and also prevent it from recalculating on change.
I believe you need a macro to do that.
Hi,
How to do this without being random?
What I mean is, I am looking to divide a bunch of soccer players in 3 teams. Each player has a rating, position he pays for and availability as parameters.
Now how can I distribute them evenly in each team so that all the skill-sets and ratings of all the available players are distributed evenly?
The flow for it is as follows:
1) First it needs to check availability
2) Sort the all the Goalkeepers in 3 teams
3) Then all strikers and then all defenders to be distributed
Every week for a season, the only input that will change will be availability rest everything will be same.
Sorry for asking such a lengthy question, but have been trying to solve it form a really long time.
I really appreciate your effort. I have been trying to build a team generator for my class room assignment work, so that students can't pick only those friends who they are attached with. Otherwsie, they are not gonna learn the team building. This Post has made the work much easier for myself.