I have a form based off a table called open jobs... info on this form is printed out and given to workers to complete the task, once finished, the jobsite is inspected and if approved a finished button is clicked which runs a query sending that record to different table.
If it is disapproved a check box is ticked and a button is pressed that sends a copy of the record over to a disapproved table. Every time the disapproved button is hit it adds another record to the disapproved table along with the current date. This works great.
How can I, after a job has been disapproved but then redone correctly, remove those records from the disapproved table? all of the tables have a unique id field, i just cant figure out a proper query. I need it to look in the disapproved table for ids matching the current record on my form and delete them. is this possible?
If it is disapproved a check box is ticked and a button is pressed that sends a copy of the record over to a disapproved table. Every time the disapproved button is hit it adds another record to the disapproved table along with the current date. This works great.
How can I, after a job has been disapproved but then redone correctly, remove those records from the disapproved table? all of the tables have a unique id field, i just cant figure out a proper query. I need it to look in the disapproved table for ids matching the current record on my form and delete them. is this possible?
Comment