Mike said:
I have set up a lookup in a form using a combo box all
seems ok except that it will only show 1 (one)of the 4
field I want to show in the form, I have tried all sorts
of combinations but I just get this 1 field
Do you mean when the list is "dropped" or after you have made a selection?
If the latter, you need to know that a ComboBox will only display the left-most
column of non-zero width when not dropped down. There is no way to make it
display more than that. You can make that particular column an expression that
concatenates multiple columns together. You can also add other TextBoxes to
your form for the purpose of displaying the other columns using...
=ComboBoxName.Column(n)
....as the ControlSource where n is the zero-based column position in the Combo's
RowSource.
If the former, then you need to make sure that all of the columns are included
in the ComboBox's RowSource and that the ColumnCount of the ComboBox is set to
display the proper number of columns and that the ColumnWidths property is set
to make sure that columns you want to see have a width higher than zero.