I'm looking for the best method to mark an invoice as paid.
What I've come up with is as follows - comments?
1. Query invoices between dates
2. Form produces list of invoices with DatePaid = Null
3. Question - Are you sure you want to pay?
4. Yes - Query - Update DatePaid=Now() where InvDate = user selection.
5. Print list of invoices paid.
Voila - does this make sense??
What I've come up with is as follows - comments?
1. Query invoices between dates
2. Form produces list of invoices with DatePaid = Null
3. Question - Are you sure you want to pay?
4. Yes - Query - Update DatePaid=Now() where InvDate = user selection.
5. Print list of invoices paid.
Voila - does this make sense??