I have a table that tracks jobs I receive from clients (jobs table). Each job has various tasks, which I track with a separate table (tasks table).
I also have a third table that tracks billings (receivables table). When I bill clients, I bill for every task associated with a particular job at once. Each task is identical, so they are all billed at the same amount. However, my clients prefer separate invoices for each task.
I'm trying to write a code that will populate the receivables table with a separate row for each task so I can generate separate invoices from that. Each row would be almost identical with the exception of the invoice# and task#. I'm hoping this can be done with the click of a command button.
Can someone point me in the right direction?
I also have a third table that tracks billings (receivables table). When I bill clients, I bill for every task associated with a particular job at once. Each task is identical, so they are all billed at the same amount. However, my clients prefer separate invoices for each task.
I'm trying to write a code that will populate the receivables table with a separate row for each task so I can generate separate invoices from that. Each row would be almost identical with the exception of the invoice# and task#. I'm hoping this can be done with the click of a command button.
Can someone point me in the right direction?