
Originally Posted by
TestUser0
Let's say I have a list 3 tables:
1) Customer table called tblCustomer - table with all customers each with unique CustomerID
2) A food look up table called lkpFood - table with all the different foods and their category as well as a unique FoodID.
3) A junction table called juntblCustomerFood - a table with relationships to CustomerID and FoodID and then also the number of items of that food item that were ordered.
Now I am creating a Customer form and I want to figure out whats the most user-friendly way to display the foods and allow user to fill the form. Ideally the foods would be separated by category and all the user would have to do is to tick a check box of the food and then enter how much of that item was used. Can I get some help on the best way to do this (ideally with using little to no VBA code).