Adding

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

At times we have requisitions that are incomplete. These are updated through
a query. If the order calls for 10 and 5 are received the next day the
remainder has been received it overwrites the first amount and the record
only shows 5 even though 10 has been received. What is the best way to
correct this?
 
Create a second table to store the actions that are complete. Link it to the
current table on the ID field for the records in the current table. As each
part of an item is completed it will then create its own record in the new
table. To see if an item has been fully completed, you would add up the
items in the new table where the link field matches the ID field of the
current table and compare that sum to the requested number in the current
table.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top