Hi,
What I essentially am trying to do is to select a group that contains players, then assign that group to a game, the players will all then be assigned using a seperate entry ID to the game instead of one group entry ID, reason being is that each player has their own respective result. In a Nutshell the user chooses a group, then all the players who have that group name are automatically entered into the game.
My Database design is as follows:
tbl_players
Player_ID (pk)
Name
Surname
Preffered side
tbl_GroupMembers
Player_ID (pk)
Group Name (pk)
tbl_groups
Group Name (pk)
Description
tbl_GameRegistration
Entry_ID (pk)
Player_ID
Game_ID
tbl_Result
Entry ID (pk)
Round number (pk)
Win/Loose/Draw
So a player can be selected an enter a game, I need to do the same but essentially for a group of people all at once.
Any ideas how I would go about doing this with VBA, I know that I will have a query to Select which group I want first but from there I am confused.
Thanks,
Tom
What I essentially am trying to do is to select a group that contains players, then assign that group to a game, the players will all then be assigned using a seperate entry ID to the game instead of one group entry ID, reason being is that each player has their own respective result. In a Nutshell the user chooses a group, then all the players who have that group name are automatically entered into the game.
My Database design is as follows:
tbl_players
Player_ID (pk)
Name
Surname
Preffered side
tbl_GroupMembers
Player_ID (pk)
Group Name (pk)
tbl_groups
Group Name (pk)
Description
tbl_GameRegistration
Entry_ID (pk)
Player_ID
Game_ID
tbl_Result
Entry ID (pk)
Round number (pk)
Win/Loose/Draw
So a player can be selected an enter a game, I need to do the same but essentially for a group of people all at once.
Any ideas how I would go about doing this with VBA, I know that I will have a query to Select which group I want first but from there I am confused.
Thanks,
Tom