I have a relatively straightforward task I'd like to do, and can't figure out how to do it. Programming isn't my forte, so- bear with me.
Let's say I have a table with two columns. One is for item numbers, and another is for their status (expressed as a number). So, it looks like this:
Item Status
101 4
102 4
103 5
104 3
105 4
106 5
I would like to create two types of forms. The first would change the status of any item number that was entered to a "1." So, enter "101" and the status changes to "1" for that item. And so forth, down the line.
The second type of form would allow me to enter two numbers: one for the item, and the second for the status I would like to change it to. So, enter "101" and then "1", and the first line changes to 101 and 1.
I can do this with a query, but the query then asks me if I'm *sure* I want to change those items, and that gets in the way of entering data for hundreds of items!
Any help would be appreciated. Thanks!
Let's say I have a table with two columns. One is for item numbers, and another is for their status (expressed as a number). So, it looks like this:
Item Status
101 4
102 4
103 5
104 3
105 4
106 5
I would like to create two types of forms. The first would change the status of any item number that was entered to a "1." So, enter "101" and the status changes to "1" for that item. And so forth, down the line.
The second type of form would allow me to enter two numbers: one for the item, and the second for the status I would like to change it to. So, enter "101" and then "1", and the first line changes to 101 and 1.
I can do this with a query, but the query then asks me if I'm *sure* I want to change those items, and that gets in the way of entering data for hundreds of items!
Any help would be appreciated. Thanks!