G
Guest
I’m developing a database for a river rafting company that uses guides. I
have tables for the data about the group and individual guides respectively.
Each time a guide does a trip, he earns a certain number of points.
Here’s my table structure:
tblGroupData
GroupID (key)
GroupName
tblGuideData
GuideID (key)
GuideName
tblGuideAssignments
GuideID
GroupID
Points
What I need to do is to “assign†guides to groups along with the number of
points they (guide) got for doing the trip. That means that
tblGuideAssignments would be nothing but numbers.
When I assign the guides to the groups, I want to be able to choose from the
guides in the table by their last name (not their ID which has no meaning),
but the ID is stored.
I have one form (frmMain) that contains all the fields in tblGroupData. On
that I have a command button that would open another form where I would make
the assignment of guides to the group showing in the Main form at the time.
I must be brain dead tonight, because I can’t figure out how to do this.
Even a little hint to send me in the right direction would be appreciated.
Jerry
have tables for the data about the group and individual guides respectively.
Each time a guide does a trip, he earns a certain number of points.
Here’s my table structure:
tblGroupData
GroupID (key)
GroupName
tblGuideData
GuideID (key)
GuideName
tblGuideAssignments
GuideID
GroupID
Points
What I need to do is to “assign†guides to groups along with the number of
points they (guide) got for doing the trip. That means that
tblGuideAssignments would be nothing but numbers.
When I assign the guides to the groups, I want to be able to choose from the
guides in the table by their last name (not their ID which has no meaning),
but the ID is stored.
I have one form (frmMain) that contains all the fields in tblGroupData. On
that I have a command button that would open another form where I would make
the assignment of guides to the group showing in the Main form at the time.
I must be brain dead tonight, because I can’t figure out how to do this.
Even a little hint to send me in the right direction would be appreciated.
Jerry