Hi again: I have a user form that allows users to create a recipe. The form has several textboxes and combo boxes to enter 10 ingredients. The control names are Qty1, cboUnit1, cboIng1; Qty2, cboUnit2, cboIng2; etc. all the way to 10. The user can enter the amount in Qty, select the unit (grams, kilos, ounces, etc.) from cboUnit and select the ingredient from cboIng.
I need to look up the cost of each ingredient in tblProducts based on the unit selected.
I have been able to get the desired result by using code as below for each control. What I am asking, is there a way to do a loop of some kind without having to have so much code since I have to repeat this code for each of the 10 ingredients?
Bookmarks