Hi all,
Alright so I'm new to Access and I'm a little lost. My end goal is to create a database where users can open up the front end and input "Material Numbers" and then will be provided with the related data for said material numbers.
Currently, I have the query set up with the following SQL code:
SELECT [Material Key], [Material Name], [info]
FROM Table1
WHERE (((";" & [Enter Material Key] & "; ") Like ("*" & [Material Key] & "*")));
So far this works pretty well. However, in parameter input box can only fit about 30 semi colon delimited concatenated material numbers. I need it to be able to do a couple thousand at a time ideally.
So, is there anyway to get it to work the way I have it? If not, does anyone have any ideas how I could go about accomplishing this?
Thanks
Alright so I'm new to Access and I'm a little lost. My end goal is to create a database where users can open up the front end and input "Material Numbers" and then will be provided with the related data for said material numbers.
Currently, I have the query set up with the following SQL code:
SELECT [Material Key], [Material Name], [info]
FROM Table1
WHERE (((";" & [Enter Material Key] & "; ") Like ("*" & [Material Key] & "*")));
So far this works pretty well. However, in parameter input box can only fit about 30 semi colon delimited concatenated material numbers. I need it to be able to do a couple thousand at a time ideally.
So, is there anyway to get it to work the way I have it? If not, does anyone have any ideas how I could go about accomplishing this?
Thanks