8 team Golf Schedule - need formula to choose teams

NorthCountryVinyl

New Member
Joined
Apr 25, 2019
Messages
5
Hi all.

Newbie here, I'm trying to figure out a formula to randomly choose team matchups for an 8 team golf league. And...I'm completely drawing a blank. Can anyone help me?

Thank you!
Sandi
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
So you want to randomly choose 8 teams?

In A1:A8 use the formula =RAND()
In B1 use the formula =RANK(A1,$A$1:$A$8) and drag it down to B8.

That will generate random unique numbers in column B between 1 & 8. That can then be assigned to a team, e.g. 5 = "golf star players"
 
Upvote 0
Type the names of the teams into A1:A8

in B1:B8
=RAND()

in C1:C8
=INDEX(A$1:A$8,MATCH(SMALL(B$1:B$8,ROW()),B$1:B$8,0))

Row C will pick a random team from your list of 8 without duplicating it.

Each time you do a calculation however a new selection of the 8 teams will be made.
 
Upvote 0
So you want to randomly choose 8 teams?

In A1:A8 use the formula =RAND()
In B1 use the formula =RANK(A1,$A$1:$A$8) and drag it down to B8.

That will generate random unique numbers in column B between 1 & 8. That can then be assigned to a team, e.g. 5 = "golf star players"

That's a nice alternative!
 
Upvote 0
Wait, when I use the =INDEX... I think it might be duplicating. ? Or maybe I've done something wrong.

-- image removed --
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,222,689
Messages
6,167,647
Members
452,127
Latest member
jayneecm

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