C
CSOUSA
There are a number of fields that I require to appear in a table (for
querying, and because they are a part of our fundamental database structure),
but that have no need for the user to input them, and in fact user input
could even lead to errors. I require the following fields-
Pertaining to Invoices:
LINE TOTAL = [PRICE] * [QUANTITY]
INVOICE TOTAL = sum([DETAILS]![LINE TOTAL]) (per invoice)
TAX = [CUST]![TAXRATE] * [INVOICE]![TOTAL]
ITEMS = Count of [ITEM]
I have a DETAILS and INVOICE table (the DETAILS table contains the Items,
and the INVOICE table contains basic Invoice Info).
The goal is to have these fields be calculated for new records as they are
being entered (as invoices are "generated"), and to have that data stored
directly to fields in the table as well for later querying, updating, and
viewing.
Any thoughts?
querying, and because they are a part of our fundamental database structure),
but that have no need for the user to input them, and in fact user input
could even lead to errors. I require the following fields-
Pertaining to Invoices:
LINE TOTAL = [PRICE] * [QUANTITY]
INVOICE TOTAL = sum([DETAILS]![LINE TOTAL]) (per invoice)
TAX = [CUST]![TAXRATE] * [INVOICE]![TOTAL]
ITEMS = Count of [ITEM]
I have a DETAILS and INVOICE table (the DETAILS table contains the Items,
and the INVOICE table contains basic Invoice Info).
The goal is to have these fields be calculated for new records as they are
being entered (as invoices are "generated"), and to have that data stored
directly to fields in the table as well for later querying, updating, and
viewing.
Any thoughts?