L
Liat
Hello,
I used to have a table with suits information. It
contained player details, 5 paragraphs of evaluations,
each paragraph contained 3 evaluations and 5 paragraphs
of payments, each paragraph contained up to 20 payments.
Since I encountered a problem with the query on the
payments (a big query with a lot of OR), I sent a
question and have been told yjat I should normalize.
I normalized as follows:
tblPlayers
PlayerID (primary key)
PlayerName
PlayerAddress
tblSuits
SuitID (primary key)
SuitDate
SuitComments
tblPlayerSuits
PlaySuitID (primary key)
PlayerID
SuitID
tblSuitParas
SuitParasID (primary key)
PlaySuitID (composite primary key with ParagraphNum)
ParagraphNum (composite primary key with PlaySuitID)
tblSuitEvals
SuitParasID (composite primary key with EvalID)
EvalID (composite primary key with SuitParasID)
EvalQuantity
tblSuitPays
SuitParasID (composite primary key with PaymentID)
PaymentID (composite primary key with SuitParasID)
PaymentAmt
Now, I want to create a form that will fill those tables
(that used to be 1 table, for it I created a form).
I really don't know how to do that - in the form creation
wizard there is an option to use only one table/query.
Should I create a query and from it create the form?
How do I show all the details of each record in the form?
Thanks a lot,
Liat
I used to have a table with suits information. It
contained player details, 5 paragraphs of evaluations,
each paragraph contained 3 evaluations and 5 paragraphs
of payments, each paragraph contained up to 20 payments.
Since I encountered a problem with the query on the
payments (a big query with a lot of OR), I sent a
question and have been told yjat I should normalize.
I normalized as follows:
tblPlayers
PlayerID (primary key)
PlayerName
PlayerAddress
tblSuits
SuitID (primary key)
SuitDate
SuitComments
tblPlayerSuits
PlaySuitID (primary key)
PlayerID
SuitID
tblSuitParas
SuitParasID (primary key)
PlaySuitID (composite primary key with ParagraphNum)
ParagraphNum (composite primary key with PlaySuitID)
tblSuitEvals
SuitParasID (composite primary key with EvalID)
EvalID (composite primary key with SuitParasID)
EvalQuantity
tblSuitPays
SuitParasID (composite primary key with PaymentID)
PaymentID (composite primary key with SuitParasID)
PaymentAmt
Now, I want to create a form that will fill those tables
(that used to be 1 table, for it I created a form).
I really don't know how to do that - in the form creation
wizard there is an option to use only one table/query.
Should I create a query and from it create the form?
How do I show all the details of each record in the form?
Thanks a lot,
Liat