Anyone play or create Formula for email? It look like there is some hidden trick we must also perform to get it to work.
It work for my Sandbox but it doesn't work when I actual use the formula.
Here is my sample Formula:
Custom field: emailCatgeory is a Multi-Enum I'm using as test.
Sandbox
Note I use !entity because Sandbox will only work with existing record.
API Save Formula:
But this is the result I get instead
It work for my Sandbox but it doesn't work when I actual use the formula.
Here is my sample Formula:
Custom field: emailCatgeory is a Multi-Enum I'm using as test.
Sandbox
Code:
output\print( ifThenElse(!entity\isNew() && fromAddress=='test@email.com', emailCategory=list('found email'), emailCategory=list('TRY AGAIN')) )
API Save Formula:
Code:
ifThenElse(entity\isNew() && fromAddress=='test@email.com', emailCategory=list('found email'), emailCategory=list('TRY AGAIN'))
Comment