Set checkbox based on dropdown value

Hello
i'm trying to apply sugarlogic to have a checkbox set to true if a dropdown value (on the same record) is set to one or more defined values. Is there a way to reach this without coding, and without using workflows?

thank you!

Parents
  • The formula is pretty simple:

    ifElse(isInList($dd_field,createList("Foo","Bar")),true,false)

    André Lopes
    Lampada Global
    Skype: andre.lampada
Reply
  • The formula is pretty simple:

    ifElse(isInList($dd_field,createList("Foo","Bar")),true,false)

    André Lopes
    Lampada Global
    Skype: andre.lampada
Children