I'm trying to run an update query to change the last used date for all products on tomorrow's production report to tomorrow. I would like to be able to type or copy/paste each item number from the schedule into a querry to update them quickly, but I'm running into some problems. This is what I have so far:
How would I set it up to just type in all the item numbers and click run to update all dates at once?
Thanks!
Code:
Update tblproductinfo
Set [DateUsed]="08-13-2012"
Where [Itemnumber]=
How would I set it up to just type in all the item numbers and click run to update all dates at once?
Thanks!