There are:
200+/- Teams (each Team identified by a TeamID) - table is loaded
15 Weeks per season (1-15)
5 PlayDays (Mon,Tue...Fri)
3 PlayTimes for any given PlayDay (AM/MidDay/PM)
6 PlayingFields (1-6)
Total: Up to 18 games per PlayDay BUT there are usually less games
on any given day (due to BYEs)
2000 +/- players in Team file where keys = TeamID and PlayerID
(where PlayerID is just a sequential # assigned when first entered)
Schedules are decided by Board.
I must generate a Score sheet (used by coaches and refs) for EACH
scheduled game showing:
Week number (1-15)
PlayDay (Mon,Tue...Fri)
PlayTime (AM/MidDay/PM)
PlayingField (1-6)
HomeTeam (by TeamID)
VisitorTeam (by TeamID)
Team Name (included in Team file using a special PlayerID)
Players info (name ++) for ALL players on HomeTeam
Players info (name ++) for ALL players on VisitorTeam
Score sheets works beautifully using Test data.
I receive Entire Season Schedule where each record (access 2007 table) supplies me:
Week number (1-15)
PlayDay (Mon,Tue...Fri)
PlayTime (AM/MidDay/PM)
PlayingField (1-6)
HomeTeam (by TeamID)
VisitorTeam (by TeamID)
I have VBA coding, which appears to be working properly, identifying
if input record has 1 or more scheduled games but I need help with:
..Getting all the player info for a given game from Team file
..Writing multiple records (where each record represents one game) in a
table.
Any Suggestions/Helpful hints? Thanks...jnh