lagartixa2001 Posted January 26, 2001 Posted January 26, 2001 Hi, I 've a db that contains 4 fields: fieldmain fieldA fieldB fieldC - When FieldA is empty, the fieldmain have to use a valuelist X; - When FieldA and FieldB are empty, the fieldmain have to use a valuelist Y; - When FieldA, FieldB and FieldC are empty, the fieldmain have to use a valuelist Z; - When all fields are empty, do nothing. Does it possible?:
john.daly Posted January 27, 2001 Posted January 27, 2001 Create three global fields for your value lists: ListX ListY ListZ and a calculated field PopUpList where the calculation is; Case(FieldA = "" and FieldB = "" and FieldC = "",ListZ, FieldA = "" and FieldB = "", ListY, FieldA = "", ListX) Use this calculated field for the values in the popup list.
Recommended Posts
This topic is 8702 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now