J
JMill248
I am making a form where I enter a part number and its cost
automatically generates into another text box. How do you do that?
automatically generates into another text box. How do you do that?
Do you have a table of the part numbers and their cost? Create a combo
where there are at least those two columns, then after update on the combo:
forms!myform!PartCost= cboPartNumber.Column(1)
where the first column (0) is the part number and the second (1) is the
cost.
With a list of valid part numbers users will have less of a chance of typing
something incorrect in the first place.
Mich
- Show quoted text -