Hi all,
In our database, we are tracking revenue figures. The required metrics, found in tblRecords, are [Revenue], [Gross revenue] and [Net revenue]. The only field that needs to be entered manually should be [Revenue]. The other two are then calculated from [Revenue] by multiplying by [Share % 1] and [Share % 2] respectively (they are 0.xx decimals). These shares are found in a seperate table, tblPartnersets, assigned to a unique ID that is then assigned to the record containing the revenue figures.
All of this is well and good but in rare cases we have situations where the data entry person would rather just enter the three revenue figures manually without any calculations being done. This has caused a problem for me in that I am not sure how I should structure my tables based on this. In 90% of cases the automatic calculation would be used. So:
1. How can I facilitate using both methods?
2. Should I be calculating [Gross revenue] and [Net revenue] on the fly through queries or should I run a one-off update query that will actually store the values into tblRecords?
Thanks in advance!
In our database, we are tracking revenue figures. The required metrics, found in tblRecords, are [Revenue], [Gross revenue] and [Net revenue]. The only field that needs to be entered manually should be [Revenue]. The other two are then calculated from [Revenue] by multiplying by [Share % 1] and [Share % 2] respectively (they are 0.xx decimals). These shares are found in a seperate table, tblPartnersets, assigned to a unique ID that is then assigned to the record containing the revenue figures.
All of this is well and good but in rare cases we have situations where the data entry person would rather just enter the three revenue figures manually without any calculations being done. This has caused a problem for me in that I am not sure how I should structure my tables based on this. In 90% of cases the automatic calculation would be used. So:
1. How can I facilitate using both methods?
2. Should I be calculating [Gross revenue] and [Net revenue] on the fly through queries or should I run a one-off update query that will actually store the values into tblRecords?
Thanks in advance!