A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

how do I make a sports schedule



 
 
Thread Tools Display Modes
  #1  
Old October 16th, 2008, 10:39 PM posted to microsoft.public.excel.setup
SHOETAC
external usenet poster
 
Posts: 1
Default how do I make a sports schedule

i AM TRYING TO MAKE A SPORTS SCHEDULE THAT EACH TEAM PLAYS EACH OTHER ONCE
  #2  
Old October 17th, 2008, 10:12 AM posted to microsoft.public.excel.setup
Stefi
external usenet poster
 
Posts: 1,841
Default 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 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:

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

  #3  
Old October 18th, 2008, 04:26 AM posted to microsoft.public.excel.setup
ShaneDevenshire
external usenet poster
 
Posts: 2,232
Default how do I make a sports schedule

Hi,

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


--
Thanks,
Shane Devenshire


"SHOETAC" wrote:

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

  #4  
Old November 24th, 2009, 02:20 PM posted to microsoft.public.excel.setup
Pat Smith
external usenet poster
 
Posts: 1
Default sports scheduler

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:

On Thursday, October 16, 2008 5:39 PM
SHOETA wrote:

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

On Friday, October 17, 2008 5:12 AM
Stef wrote:

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 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:

On Friday, October 17, 2008 11:26 PM
ShaneDevenshir wrote:

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 in
Excel"


--
Thanks,
Shane Devenshire


"SHOETAC" wrote:

EggHeadCafe - Software Developer Portal of Choice
Build a SAPI Text to Wav Converter Library
http://www.eggheadcafe.com/tutorials...xt-to-wav.aspx
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:00 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright 2004-2024 OfficeFrustration.
The comments are property of their posters.