in my main form, i have a the text box called: "Emloyee" which comes up as e.g. "Smith,John". i.e. if my end user ever gets more employees then they can use the drop-down list.
i want it to select "Smith,John" when im making a new record, usually the box is just empty even after i go into the box properties and type into the "default value" field: [Smith] & [John]
could any help me on getting the "Employee" field to show "Smith,John" when i make a new record.
btw, my record source is: SELECT [EmployeeID], [LastName] & ", " & [FirstName] FROM Employees ORDER BY [LastName] & "," & [FirstName]; .
i want it to select "Smith,John" when im making a new record, usually the box is just empty even after i go into the box properties and type into the "default value" field: [Smith] & [John]
could any help me on getting the "Employee" field to show "Smith,John" when i make a new record.
btw, my record source is: SELECT [EmployeeID], [LastName] & ", " & [FirstName] FROM Employees ORDER BY [LastName] & "," & [FirstName]; .