V
vaa571
I really need help with this please...
I am intentionally leaving the Lot# field on my table empty because it will
slow down the assembly line if they have to enter a five digit lot number
when they are scanning in the “Pack Serial Number†& the “Board Serial
Number†into that table. I am rather enter the lot number at the end of that
lot, so it will save as a lot of time. I am talking about over a thousand
records per lot. I created an update query to enter the lot#, it works if I
only have one lot to update. Let’s say that I
have 2000 records in a table and the first thousand is lot# 12345 and the
remaining thousand should be lot# 67891. I ran the query it ask for input
"starting pack" and "end pack serial number" but when I am trying to run it
to
update the remaining thousand packs it update all 2000 records. How can I
make this works and not loose the information already updated previously?
This table will continue to grow and I really need to keep track of the lot#
for each lot built and shipped.
Here is a copy of my query:
UPDATE Main AS Data SET [Lot Number] = [Enter Lot Number]
WHERE PackSerialNumber Between [Enter Starting Pack Serial Number] And
[Enter Ending Pack Serial Number];
Thank you so much for any help
I am intentionally leaving the Lot# field on my table empty because it will
slow down the assembly line if they have to enter a five digit lot number
when they are scanning in the “Pack Serial Number†& the “Board Serial
Number†into that table. I am rather enter the lot number at the end of that
lot, so it will save as a lot of time. I am talking about over a thousand
records per lot. I created an update query to enter the lot#, it works if I
only have one lot to update. Let’s say that I
have 2000 records in a table and the first thousand is lot# 12345 and the
remaining thousand should be lot# 67891. I ran the query it ask for input
"starting pack" and "end pack serial number" but when I am trying to run it
to
update the remaining thousand packs it update all 2000 records. How can I
make this works and not loose the information already updated previously?
This table will continue to grow and I really need to keep track of the lot#
for each lot built and shipped.
Here is a copy of my query:
UPDATE Main AS Data SET [Lot Number] = [Enter Lot Number]
WHERE PackSerialNumber Between [Enter Starting Pack Serial Number] And
[Enter Ending Pack Serial Number];
Thank you so much for any help