Brian Martin
Registered User.
- Local time
- Today, 17:37
- Joined
- Jul 24, 2002
- Messages
- 68
PARAMETERS [Forms]![frmChoose]!
- .[Column(1)] Text ( 255 );
SELECT [Product List].[Part Number], [Product List].[Short Description], [Product List].[Full Description]
FROM [Product List]
WHERE ((([Product List].[Part Number]) Like " [Forms]![frmChoose]!- .[Column(1)]*"))
ORDER BY [Product List].[Part Number] DESC;
I'm trying to reference the first column in my listbox from my query and the above sql is what I have. This doesn't seem to work. What is wrong with it? Am I referencing it properly?
- .[Column(1)]*"))