I have the following tables:
Tables:
1) Table name: Fee
FeeID
Description
Amount
Inactive yes/no
2) Table name: Invoice
InvoiceID
CustomerID
BillingDate
3) Table name: InvoiceDetails
InvoiceID
FeeID
TotalBilled
My data entry form is based on a query with the above tables. The criteria in the query in the inactive field: =False. However when using the form, the combobox of the description field is still pulling the inactive fee in addition to the active fee. I would like only the active fees available for the user to avoid any errors in billing. What am I missing? Thanks is advance!
Tables:
1) Table name: Fee
FeeID
Description
Amount
Inactive yes/no
2) Table name: Invoice
InvoiceID
CustomerID
BillingDate
3) Table name: InvoiceDetails
InvoiceID
FeeID
TotalBilled
My data entry form is based on a query with the above tables. The criteria in the query in the inactive field: =False. However when using the form, the combobox of the description field is still pulling the inactive fee in addition to the active fee. I would like only the active fees available for the user to avoid any errors in billing. What am I missing? Thanks is advance!