ehazel2001
New member
- Local time
- Today, 07:50
- Joined
- Oct 30, 2008
- Messages
- 3
Ok, so I have this gigantic database that I have created to deal with catering jobs for a restaurant. It has multiple functions, it tracks menu items, catering equipment, personnel & clientele. All these are represented as such with tables:
Tables
Customer
Equipment
Menu Item
New Job
Staff
The New Job Table (& subsequent form) takes all of the pertinent information from the other four tables to create a new job record, which has the following fields:
ID: Autonumber
Customer: Lookup to Customer name on Customer Table
Event Location: Text
Number of Guests: Number
Menu Item: Lookup to Menu Item Name on Menu Item Table
Staff: Lookup to Staff name on Staff Table
Event Date: Date
Event Time: Text
Subbed Items: Text
Notes: Text
Directions to Event: Text
Equipment Needed: Currently a lookup
Estimated Food Cost: Currency
Estimated Labor Hours: Currency
Estimated Rental Cost: Currency
Estimated Beverages: Currency
Estimated Total: (Not in table, but on form as a running total of the above estimated costs so that this form can be printed in a report as a "service quote invoice"
The problem that I'm having is with the Equipment Needed. In the Equipment Table, there are multiple records of equipment items with their price per unit attached to each record (read: the only columns are Equipment Name & Price). I need to be able to select more than one piece of equipment per new job, I had been doing a multiple value combo box and that works ok, but it does not allow me to specify a quantity of each item, and I would also like for each item selected, the price per be shown on the form (or in a report) so that I can make a box for an equation that multiplies the quantity of each menu item (input by user for each new job) to its corresponding price (as represented in its record in the table Equipment). Once those totals are figured out (with equations in text boxes) I know how to create a running total that be ouput to the Estimated Rental Cost field in the New Job Table....
PLEASE HELP!
Tables
Customer
Equipment
Menu Item
New Job
Staff
The New Job Table (& subsequent form) takes all of the pertinent information from the other four tables to create a new job record, which has the following fields:
ID: Autonumber
Customer: Lookup to Customer name on Customer Table
Event Location: Text
Number of Guests: Number
Menu Item: Lookup to Menu Item Name on Menu Item Table
Staff: Lookup to Staff name on Staff Table
Event Date: Date
Event Time: Text
Subbed Items: Text
Notes: Text
Directions to Event: Text
Equipment Needed: Currently a lookup
Estimated Food Cost: Currency
Estimated Labor Hours: Currency
Estimated Rental Cost: Currency
Estimated Beverages: Currency
Estimated Total: (Not in table, but on form as a running total of the above estimated costs so that this form can be printed in a report as a "service quote invoice"
The problem that I'm having is with the Equipment Needed. In the Equipment Table, there are multiple records of equipment items with their price per unit attached to each record (read: the only columns are Equipment Name & Price). I need to be able to select more than one piece of equipment per new job, I had been doing a multiple value combo box and that works ok, but it does not allow me to specify a quantity of each item, and I would also like for each item selected, the price per be shown on the form (or in a report) so that I can make a box for an equation that multiplies the quantity of each menu item (input by user for each new job) to its corresponding price (as represented in its record in the table Equipment). Once those totals are figured out (with equations in text boxes) I know how to create a running total that be ouput to the Estimated Rental Cost field in the New Job Table....
PLEASE HELP!