The database I am working on needs to store a set of information (Who ordered a souvenir, how many and total cost). The problem I’m having is that every year, the souvenir changes and the price change as well. To compound the matters, we offer only one souvenir a year.
I’ve set up a table that stores participant ID, Qty. of souvenir and total cost. However, where do I store the price so that I can set the Total Cost to automatically calculate total cost based on price * qty and then store it in the Total Cost field and be “accessible” to the end user to change the pricing each year? (I certainly don’t want to save it in VBA/Default field, etc.)
TIA.