I store price data in a Products table, and link to it in an InvoiceLines table (Many InvoiceLines from One Product). However, when a price changes (is updated) in Products the original price of that item should not change in those records in InvoiceLines that have already been created.
Given the Lookup type doesn’t offer it, can you think of a way to achieve this?
At the moment the only way I can think of, is to export data from one table and import to another?