A
access is making me crazy
I am putting a simple customer data base together that includes the field
[BillAddress] and [ShipAddress]. On some records they are the same. So, I
included a yes/no box [SameShipAddress?]. To simplify data entry I would
like the [ShipAddress] to fill automatically if it is the same as
[BillAddress]. For the "control source" on the [ShipAddress] I used:
=Iif(([SameShipAddress?]=yes),[BillAddress],null)
This results when I check the [SameShipAddress?] box the [ShipAddress] fills
with the same as [BillAddress] but when the box is not checked I am unable to
type any text because it is bound to the expression. Is there a value for
the <false part> that will allow me to enter whatever into [ShipAddress]?
[BillAddress] and [ShipAddress]. On some records they are the same. So, I
included a yes/no box [SameShipAddress?]. To simplify data entry I would
like the [ShipAddress] to fill automatically if it is the same as
[BillAddress]. For the "control source" on the [ShipAddress] I used:
=Iif(([SameShipAddress?]=yes),[BillAddress],null)
This results when I check the [SameShipAddress?] box the [ShipAddress] fills
with the same as [BillAddress] but when the box is not checked I am unable to
type any text because it is bound to the expression. Is there a value for
the <false part> that will allow me to enter whatever into [ShipAddress]?