Jump to content

Dinamic valuelist


lagartixa2001

This topic is 8510 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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?:

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This topic is 8510 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.