My database is used to store data for internal rejects, and to calculate the cost of each new entry I created a query, which takes the [weight] from the entry form, and multiplies that by the [film type](from a seperate tbl that holds all the different film types and their price per kilo). The result of the calculation is dispalyed on the entry form, and all this works fine. My problem is that at the start of each year the price per kilo of each [film type] changes, but I need to keep the integrity of the previous year's entries with theirr values according to that year's prices. What I did was to create a seperate table for the Film types for each year, with their seperate price per kilos, and a corresponding query to work out the value of each entry. Each query has date limits to restrict it to dealing with records for that year only. I want a query that will display all records and their proper values (£), but the query will not display any records at all because of the date restrictions put on to the queries.
In response to the answer, I cannot do it like that, because I need to have an individual costing for each record all the time for reports purposes. There is probably a better way to have done it all from the start, but I cannot think of it at all, Thanks.
[This message has been edited by DougS (edited 01-30-2002).]
In response to the answer, I cannot do it like that, because I need to have an individual costing for each record all the time for reports purposes. There is probably a better way to have done it all from the start, but I cannot think of it at all, Thanks.
[This message has been edited by DougS (edited 01-30-2002).]