how do I make a sports schedule

S

Stefi

You gave not very much details, but if you have a list of teams in A2:A? then
this macro creates a combination of opponents for each team, then you can put
dates of matches in cells B1, C1, etc.


Sub sched()
Dim teams As Range, t As Range, e As Range
Noofteams = Range("A" & Rows.Count).End(xlUp).Row
Set teams = Range("A2:A" & Noofteams)
For Each t In teams
nexte = 0
For Each e In teams
If t <> e Then
nexte = nexte + 1
Cells(t.Row, nexte + 1).Value = e.Value
End If
Next e
Next t
End Sub


Regards,
Stefi

„SHOETAC†ezt írta:
 
S

ShaneDevenshire

Hi,

Try Googling "sports schedule in Excel" or "creating a sports schedule in
Excel"
 
P

Pat Smith

Hi, were you able to create a sports schedule in Excel? I'm doing the same thing but each team plays each other twice. I found a macro that will pair up the teams, but I can't seem to find a solution to schedule them randomly. thanks



SHOETA wrote:

how do I make a sports schedule
16-Oct-08

i AM TRYING TO MAKE A SPORTS SCHEDULE THAT EACH TEAM PLAYS EACH OTHER ONCE

Previous Posts In This Thread:

how do I make a sports schedule
i AM TRYING TO MAKE A SPORTS SCHEDULE THAT EACH TEAM PLAYS EACH OTHER ONCE

RE: how do I make a sports schedule
You gave not very much details, but if you have a list of teams in A2:A? then
this macro creates a combination of opponents for each team, then you can put
dates of matches in cells B1, C1, etc

Sub sched(
Dim teams As Range, t As Range, e As Rang
Noofteams = Range("A" & Rows.Count).End(xlUp).Ro
Set teams = Range("A2:A" & Noofteams
For Each t In team
nexte =
For Each e In team
If t <> e The
nexte = nexte +
Cells(t.Row, nexte + 1).Value = e.Valu
End I
Next
Next
End Su

Regards
Stef

???SHOETAC??? ezt ??rta:

Hi,Try Googling "sports schedule in Excel" or "creating a sports schedule in
Hi

Try Googling "sports schedule in Excel" or "creating a sports schedule i
Excel

-
Thanks
Shane Devenshir

:

EggHeadCafe - Software Developer Portal of Choice
Build a SAPI Text to Wav Converter Library
http://www.eggheadcafe.com/tutorial...4b-b72a56cc906f/build-a-sapi-text-to-wav.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top