Question:
I have a custom freeform text field that does not store value. I have a "default value" formula defined.
Simplified formula:
CASE WHEN {customcheckbox} = 'T' THEN 'String1' || {customfield}
ELSE 'String2' || {customfield} END
This always returns String2. If I change the value of {customfield} then that changes in the non stored free form text, but it still shows String2.
The checkbox is always false when the record is created, at some point an action happens that causes the checkbox to be set to True. At that time I want the freefrom text to update to String1.
Any ideas? I thought maybe it isn't returning 'T', but the best I can tell that is the proper value to check against.