Hello, I currently have a database Attachment 12769 that is meant to manage inventory. The main point of my database is to accomplish two things:
a) keep a record for each individual part upon user's request (solved already)
b) be able to view a table/report (possibly a pivot table in excel) that will be able to view all "active parts" (quantity > 0). I will refer to this as the schedule from here on out.
I need the schedule to only have one record for PartNumber and PONumber combo, which is the PartPOID in my db. Once the quantity is equal to zero, which will be calculated by the user entering incoming, outgoing, and adjustment quantites via forms, that record needs to be deleted from the table.
I was planning on creating a new table (not 100% sure how to relate it) that would allow for records to be deleted, without the records being deleted altogether so part a of the database would still work fine. A possible way to do this would be running a query that adds the necessary fields of the record added to tblTransaction once the user completes a form, but I am not sure if this is the best way to go about doing this.
If anyone has any suggestions on how to go about doing this, I would really appreciate it. Thank you.