• Resolved Francis

    (@emolotel)


    Hello
    I can have a dropdown field
    if
    filedname1 = 1
    and
    fildname2 = 1

    Thank you

    • This topic was modified 5 years, 11 months ago by Francis.
    • This topic was modified 5 years, 11 months ago by Francis.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @emolotel

    I’m sorry, but don’t understand your questions. Who is fieldname2 field, it is the calculated field? If it is the case the equation would be, simply:

    IF(fieldname1==1, 1, '')

    Best regards.

    Thread Starter Francis

    (@emolotel)

    fieldname1 = dropdown
    fieldname2 = radiobutton
    fieldname3 = dropdown

    if fieldname1=1
    and fieldname=2

    show fieldname3

    Plugin Author codepeople

    (@codepeople)

    Hello @emolotel

    In this case, as the fieldname3 field depends on the values of other two fields in the form, you should use a calculated field as intermediary to define the dependencies.

    For example, you can insert a calculated field with the equation:

    IF(AND(fieldname1 == 1, fieldname2 == 2), 1, 0)

    and then, in the settings of the calculated field, you can define the dependency as follows:

    – if the value is equal to 1, then, select the fieldname3 from the list of dependent fields.

    Note: as the calculated field is used as auxiliary, you can tick the checkbox: “Hide Field From Public Page” in its settings.

    More information about the dependencies, visiting the following link:

    https://cff.dwbooster.com/documentation#dependencies

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘cascade menu obtained from two values’ is closed to new replies.