H
Herc
I cannot seem to remember how to do this.
In one database I have employee ids and their initials. in another, I have
employee id and customer orders. On the form they want to select the employee
every time. I have the form display the initials in a combo box with "SELECT
Employees.EmployeeID, Employees.Initials FROM Employees; " as the row source.
this works like how it is supposed to. The problem I am having is that in
another field on this form, a created field that is generated includes the
initials in it. I can get the rest of the field to generate properly, but
when it comes putting in the initials of the employee, it puts in the
employeeid and not the initials. the generated field contains
"=DatePart("m",[OrderDate],1) & DatePart("d",[OrderDate],1) &
DatePart("yyyy",[OrderDate],1) & [OrderID]" currently, because i had to take
out the employeed id until i get the initials to display properly. the
generated field needs to be able to change when the above combo box gets
modified.
In one database I have employee ids and their initials. in another, I have
employee id and customer orders. On the form they want to select the employee
every time. I have the form display the initials in a combo box with "SELECT
Employees.EmployeeID, Employees.Initials FROM Employees; " as the row source.
this works like how it is supposed to. The problem I am having is that in
another field on this form, a created field that is generated includes the
initials in it. I can get the rest of the field to generate properly, but
when it comes putting in the initials of the employee, it puts in the
employeeid and not the initials. the generated field contains
"=DatePart("m",[OrderDate],1) & DatePart("d",[OrderDate],1) &
DatePart("yyyy",[OrderDate],1) & [OrderID]" currently, because i had to take
out the employeed id until i get the initials to display properly. the
generated field needs to be able to change when the above combo box gets
modified.