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!
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!
The formula is pretty simple:
ifElse(isInList($dd_field,createList("Foo","Bar")),true,false)
The formula is pretty simple:
ifElse(isInList($dd_field,createList("Foo","Bar")),true,false)
Thank you very much André! and forgive me i need to study more! :-)