I have a form bound to a query. On the form are two text field that auto-populate on an afterupdate event of a combo box. The first field is "txtCustomer_1" from the query field named "Customer_1". The second field on the form is "txtCustomer_2" frm the query field named "Customer_2". I want "txtCustomer_2" field to auto-populate ONLY if the value is different than the value in "Customer_1".
Here's what I have for the control source for the "txtCustomer_2" field but its not working...
=IIf([Customer_1]=[Custome
r_2],"",[C
ustomer_2]
)
?????????
Start Free Trial