Hi friends,
I've got a drop down combo with the following rowsource info...
SELECT [tblProducts].[ProductID], [tblProducts].[ProductName] FROM tblProducts ORDER BY [tblProducts].[ProductID];
...which is fine.
The problem is some of users prefer to search by Product ID and some by Product Name. Is there any way to allow the user to select how they want the combo list ordered?
I'd prefer not to have to add a second optional combo
Thanks for any help
I've got a drop down combo with the following rowsource info...
SELECT [tblProducts].[ProductID], [tblProducts].[ProductName] FROM tblProducts ORDER BY [tblProducts].[ProductID];
...which is fine.
The problem is some of users prefer to search by Product ID and some by Product Name. Is there any way to allow the user to select how they want the combo list ordered?
I'd prefer not to have to add a second optional combo
Thanks for any help