The Fields are like this EmployeeName (combo box)bound to SELECT DISTINCTROW [qryEmployeeName].[Name] FROM [qryEmployeeName];
No, No, No
FIELDS are found in TABLES.
The things that you see on forms are CONTROLS
A combo box control is BOUND to a FIELD in a table via the fieldname in the CONTROL SOURCE property.
The SELECT statement that you have there is, I suspect, in the ROW SOURCE property.
The ROWSOURCE defines what data populates the dropdown list part of the combo box. It does NOT define what the combo box is BOUND to.
The form is saved in a table called tblOICMain
No, No, No
The FORM is saved in the DATABASE
The data that you see on the form may well be Saved in a table called tblOICMain.
However, if that is the case then what is qryEmployeeName doing ?
The use of qryEmployeeName inside the combo box ROW SOURCE seems a total waste of time.
SELECT DISTINCTROW [Name] FROM [tblOICMain];
would seem to do perfectly well.
G LS
accessaceNOJUNK@valleyalley.co.uk
Remove the NOJUNK to use.
Please remember to give helpful posts the stars they deserve!
This makes the post more visible to others in need! :-D