B
bsantona
How do I set a rule for a field in a form that is dependant on another field.
For example If field A = "YES" then Field B Must be >2
For example If field A = "YES" then Field B Must be >2
How do I set a rule for a field in a form that is dependant on another field.
For example If field A = "YES" then Field B Must be >2
John W. Vinson said:How do I set a rule for a field in a form that is dependant on another field.
For example If field A = "YES" then Field B Must be >2
Use a Table validation rule (in the Table properties in the design view). The
rule must cover both cases, e.g.
(FieldA = "Yes" AND [FieldB] > 2) OR [FieldB] <= 2
John W. Vinson [MVP]