I'm having complications with this database I've been given. One table has 10,000+ lines, the most important of which is a unique requisition number. This requisition number will appear several times, each with a different status and name attached to it. Once the requisition passes a certain point, I can bill accordingly.
What I would like to do is find the status at a certain point, and put it on a list to bill a client. Once it’s on a list, I create another table using those requisitions with those numbers that I've already billed. The plan was that all of the requisition numbers that are in the main table will be filtered using the second table. What ends up happening is (I think), since there are multiple lines, only one(or a few) will actually get filtered.
I’ve tried, unsuccessfully, to use an update, append, even delete queries. I’m not sure if my expertise is lacking, or if any of those solutions will actually work.
Ultimately, what I would like is once I put those numbers on the new table to not have them show up anymore in queries
What the most challenging part about this, is that the database is updated everyday. If (theoretically) we solve the problem, the next day, a new line item may come in and throw the system off again...
Any help would be much appreciated