Hi,
You can't. A combobox can only show 1 column in its textbox part. Two workarounds:
- You could use a concateneted column (Field1 & ", " & Field2 ...) as the first visible column. You can assign it a column width of 0.01 to only see it in the textbox part, not in the list.
- You could show the other columns in a separate textbox next to the combobox using a textbox control source like: =YourCombobox.Column(1) & ", " & YourCombobox.Column(2) ...
Servus
Karl