I have two tables:
Table one:
invoiceID | projectID | invoiceNumber | InvSum | paidDate | etc...
Table two:
Projectid | inv.numb.1 | inv.sum1 | paidDate1 | inv.numb.2 | inv.sum2 | PaidDate2 | inv.numb.3 | inv.sum3 | paidDate3 etc...
I would like to update table one with the records in table 2.
In table one, InvoiceID is autonumber and key.
Every project can have more than one invoice (up to 7), or the invoice can be paid in parts. That is wy table two has one projectID and many invoices.
For every invoicenumber, invoiceSum and paidDate I would like to add a line to the existing table one and add a new InvoiceID (Autonumber). Can this be done?
Table one:
invoiceID | projectID | invoiceNumber | InvSum | paidDate | etc...
Table two:
Projectid | inv.numb.1 | inv.sum1 | paidDate1 | inv.numb.2 | inv.sum2 | PaidDate2 | inv.numb.3 | inv.sum3 | paidDate3 etc...
I would like to update table one with the records in table 2.
In table one, InvoiceID is autonumber and key.
Every project can have more than one invoice (up to 7), or the invoice can be paid in parts. That is wy table two has one projectID and many invoices.
For every invoicenumber, invoiceSum and paidDate I would like to add a line to the existing table one and add a new InvoiceID (Autonumber). Can this be done?