>John
>Tried changing column width, but did not change. I changed the name of the
>spreadsheet from employee to employees. Changed all the spreadsheet headers
>and other places I could find. Could that have something to do with it? Maybe
>not changed in all places.
>B.
Wait a minute here. You're saying "spreadsheet" - an Excel construct.
Are you using Excel, or Access???
Obviously if you change the name of the Table (if indeed it is a
table, not a spreadsheet) and the names of fields, then you must make
the corresponding changes in your queries and your combo box
definitions.
Again: let's go back to square one.
What program are you using? Excel or Access (or both, linked)?
What is the name of your employee table?
What are the relevant fields in your employee table? fieldnames and
datatypes?
What is the Recordsource of your form?
What are the relevant properties of the combo:
Row Source (post the SQL if it's a query)
Control Source
Bound Column
Column Count
Column Widths
And what precisely happens when you select a row from the combo: what
do you see, and what (if anything) gets stored in the table?
John W. Vinson[MVP]
MsRose - 18 Aug 2006 02:19 GMT

Signature
Like Nike "Just Do It"
> >John
> >Tried changing column width, but did not change. I changed the name of the
[quoted text clipped - 30 lines]
> John W. Vinson[MVP]
> Program---Access
Name---Employee
Field Data
EmployeeNo Text
FirstName Text
LastName Text
EmailName Text
Ext Number
WorkPhone Number
DepartmentID Text
RecordSource??? Think it might be EmployeeNo
Relevant Properties?????
>Row Source: SELECT [EmployeeID], [LastName] & ", " & [FirstName] FROM Employee ORDER BY [LastName] & ", " & [FirstName];
Control Source: EmployeeID
Bound Column:1
Column Count: 2
Column Widths:0";2"
I am trying to create a Purchase Order form that can be filled out with
vendor,product,employee requesting items, etc.....
When I pick vendor(supplier) name it stays selected on my form, but when I
select employee it gives me a drop down list I select employee name but it
does not show up on form. Might delete form and try making it again.