So, I'm trying to do a before save formula using the drop down on the right side of the entity manager. I'm trying to identify a multi-enumerator and depending on which one is selected, it should add text to a text field.
Here is my code:
ifThen(
entity\isNew() && case.type == 'Option',
case.description = 'Text to add to field.'
);
_____
This does nothing. Nothing is ever added to any field and I don't even know where I can look to debug non working script.
Here is my code:
ifThen(
entity\isNew() && case.type == 'Option',
case.description = 'Text to add to field.'
);
_____
This does nothing. Nothing is ever added to any field and I don't even know where I can look to debug non working script.
Comment