G
Guest
I was given the responsibility of maintaining a database that for the most
part functions correctly. However, the data input form has a combo box that
allows you to select a student by a name.
Here is the box's row source from the properties menu:
SELECT distinctrow [MAIN ROSTER].Name, [MAIN ROSTER].PERNR FROM [Job code
table] INNER JOIN ([MAIN ROSTER] INNER JOIN [Exam Archive File] ON [MAIN
ROSTER].PERNR = [Exam Archive File].PERNR) ON [Job code table].Code = [MAIN
ROSTER].[Job Title] WITH OWNERACCESS OPTION;
I'm a novice at database design so it looks fine to me. But there is one
problem, when I go to the table "Exam Archive File" the name field is blank.
All the other fields that get input off the form are correct except for the
Name field.
What could be the problem?
part functions correctly. However, the data input form has a combo box that
allows you to select a student by a name.
Here is the box's row source from the properties menu:
SELECT distinctrow [MAIN ROSTER].Name, [MAIN ROSTER].PERNR FROM [Job code
table] INNER JOIN ([MAIN ROSTER] INNER JOIN [Exam Archive File] ON [MAIN
ROSTER].PERNR = [Exam Archive File].PERNR) ON [Job code table].Code = [MAIN
ROSTER].[Job Title] WITH OWNERACCESS OPTION;
I'm a novice at database design so it looks fine to me. But there is one
problem, when I go to the table "Exam Archive File" the name field is blank.
All the other fields that get input off the form are correct except for the
Name field.
What could be the problem?