C
Convoy
I have a combo box populated using the following:
Row source: SELECT tblEquipment.EquipmentID,
tblEquipment.EquipmentType, [Brand] & " " &
[ItemModelName] & " " & [ItemModelNumber] AS Expr1 FROM
tblEquipment ORDER BY tblEquipment.EquipmentType, [Brand]
& " " & [ItemModelName] & " " & [ItemModelNumber];
Column count:3
Column widths: 0";2";4"
I have chosen this field order because I want to sort
first by equipmentType then by Expr1. However when I
choose the item with this set up, the combobox displays
column 2 (i.e. Equipment Type) instead of the
concatenated Brand/ModelName/Model Number which is what I
would like to see in the combobox after a selection is
made. Thanks for your help.
Row source: SELECT tblEquipment.EquipmentID,
tblEquipment.EquipmentType, [Brand] & " " &
[ItemModelName] & " " & [ItemModelNumber] AS Expr1 FROM
tblEquipment ORDER BY tblEquipment.EquipmentType, [Brand]
& " " & [ItemModelName] & " " & [ItemModelNumber];
Column count:3
Column widths: 0";2";4"
I have chosen this field order because I want to sort
first by equipmentType then by Expr1. However when I
choose the item with this set up, the combobox displays
column 2 (i.e. Equipment Type) instead of the
concatenated Brand/ModelName/Model Number which is what I
would like to see in the combobox after a selection is
made. Thanks for your help.