I have a form which has a Combo Box-Table/Query which retrieves a list of employee names (fieldname 'Employee') syntax as follows :-
SELECT [Employees Extended].ID, [Employees Extended].[Employee Name] FROM [Employees Extended];
I wish to select another field (Rate) from this file (Employees Extended) and add it in automatically after I've selected the appropriate employee record.
What's the best way to do this.
Apologies I am new to Access
SELECT [Employees Extended].ID, [Employees Extended].[Employee Name] FROM [Employees Extended];
I wish to select another field (Rate) from this file (Employees Extended) and add it in automatically after I've selected the appropriate employee record.
What's the best way to do this.
Apologies I am new to Access