Hi there
I would like a quite bit of advice on creating tables for producing invoices. I currently have the following tables from which the invoice will be generated:
tblClients - holds basic client contact info ect
tblApplications - holds info for each application which is process for each client (clients are charged for each application we process for them)
tblInvoice - holds the InvoiceNo (AutoNum), the AppId (the primary key from the
tblApplications), the invoiceDate, VAT (percent field for 14% VAT), and then lastly the AmountDue - which will just be a total that the user inputs for each invoice
What is the best way to pull the required info for the invoice? Should I create a query which pulls all the info from the three tables together?
Thank you
I would like a quite bit of advice on creating tables for producing invoices. I currently have the following tables from which the invoice will be generated:
tblClients - holds basic client contact info ect
tblApplications - holds info for each application which is process for each client (clients are charged for each application we process for them)
tblInvoice - holds the InvoiceNo (AutoNum), the AppId (the primary key from the
tblApplications), the invoiceDate, VAT (percent field for 14% VAT), and then lastly the AmountDue - which will just be a total that the user inputs for each invoice
What is the best way to pull the required info for the invoice? Should I create a query which pulls all the info from the three tables together?
Thank you