C
carol
need to setup an update query that adds the following data
into a table.
fields: store#, qty
table currently includes a record for each store# with a
blank qty field.
the next record after each of these store# records has a
bogus value in the store# field and a valid value in the
qty field so that consecutive records appear in the
following sequence:
store# qty
01 blank
bogus 2
02 blank
bogus 4
here's what i need to update: populate the preceding
store blank qty with the next record, so that blank qty in
record #1 is replaced with value of qty in record #2 and
so on.
is there a simple way to accomplish this? thx for your
help.
into a table.
fields: store#, qty
table currently includes a record for each store# with a
blank qty field.
the next record after each of these store# records has a
bogus value in the store# field and a valid value in the
qty field so that consecutive records appear in the
following sequence:
store# qty
01 blank
bogus 2
02 blank
bogus 4
here's what i need to update: populate the preceding
store blank qty with the next record, so that blank qty in
record #1 is replaced with value of qty in record #2 and
so on.
is there a simple way to accomplish this? thx for your
help.