I don't know if this is a bit far fetched or even possible within Access but for this reason I post here in hope somebody will understand my predicament
I've basically got a sports league database. One of my tables contains a complete list of every team in the league and this is the tables only column. As each team has a unique name there is no need for any other column other than the teams name itself. Imagine:
Team
------
Team1
Team2
Team3 etc etc.
What I want to do is have my league fixtures automatically generated so that each team will play each other once per season. So, when a user has entered all the teams into my database then they will just have to press a button on one of my forms which will then assign all possible fixtures into a new table with the format being:
AutoNumber | Team | Team2
-----------------------------
1 | Team1 | Team2
2 | Team1 | Team3
3 | Team2 | Team3
Does anybody have any ideas to how I can implement this?
I've basically got a sports league database. One of my tables contains a complete list of every team in the league and this is the tables only column. As each team has a unique name there is no need for any other column other than the teams name itself. Imagine:
Team
------
Team1
Team2
Team3 etc etc.
What I want to do is have my league fixtures automatically generated so that each team will play each other once per season. So, when a user has entered all the teams into my database then they will just have to press a button on one of my forms which will then assign all possible fixtures into a new table with the format being:
AutoNumber | Team | Team2
-----------------------------
1 | Team1 | Team2
2 | Team1 | Team3
3 | Team2 | Team3
Does anybody have any ideas to how I can implement this?