F
Frank Martin
I have a Combo box selecting products in a
customer price-list.
The columns displayed in this combo box are:
'ProdID', 'Unit', 'Description',
with ProdID as the bound column.
But I want the Combo to display in the order:
'Description', 'Unit', 'ProdID'.
(With the ProdID as the bound column as
before.)
I need to use the 'Description' as an
autolookup.
For some reason I cannot make the Combo
display the columns in this second
arrangement.
I have tried rearranging the columns in the
underlying query which is:
***
SELECT Products.ProdID, Products.Unit,
IIf(Val([Unit])=0,1,Val([Unit])) AS Expr1,
Products.Description, Products.ProductGroup
FROM Products
WHERE (((Products.ProductGroup)<>"S" And
(Products.ProductGroup)<>"B" And
(Products.ProductGroup)<>"EQ"))
ORDER BY Products.Description;
***
The Combo is in a subform linked via
customer.
Please help, Frank
customer price-list.
The columns displayed in this combo box are:
'ProdID', 'Unit', 'Description',
with ProdID as the bound column.
But I want the Combo to display in the order:
'Description', 'Unit', 'ProdID'.
(With the ProdID as the bound column as
before.)
I need to use the 'Description' as an
autolookup.
For some reason I cannot make the Combo
display the columns in this second
arrangement.
I have tried rearranging the columns in the
underlying query which is:
***
SELECT Products.ProdID, Products.Unit,
IIf(Val([Unit])=0,1,Val([Unit])) AS Expr1,
Products.Description, Products.ProductGroup
FROM Products
WHERE (((Products.ProductGroup)<>"S" And
(Products.ProductGroup)<>"B" And
(Products.ProductGroup)<>"EQ"))
ORDER BY Products.Description;
***
The Combo is in a subform linked via
customer.
Please help, Frank