function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Alan MonkAlan Monk 

Hi Guys, I need help with a formula to update the Case subject field to 'Empty Chat' any Ideas please?

Hi Guys, I need help with a formula to update the Case 'Subject' field to 'Empty Chat' I want to use this as a 'Field Update from a workflow rule.

Any help would be appreciated
Best Answer chosen by Alan Monk
Khan AnasKhan Anas (Salesforce Developers) 
Hi Alan,

Greetings to you!

Try this:

Evaluation Criteria: created
Rule Criteria: formula evaluates to true
Formula:
ISBLANK(Subject)

Then from Immediate Workflow Actions, click Add Workflow Action to select Field Update
Select the Field to Update: Subject
Select Use a Formula to Set the New Value
Formula:
"Empty Chat"

Click SaveDoneActivate.

Remember that the Workflow Rule + Field Update will fire only when you save the record.

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas

All Answers

Khan AnasKhan Anas (Salesforce Developers) 
Hi Alan,

Greetings to you!

Try this:

Evaluation Criteria: created
Rule Criteria: formula evaluates to true
Formula:
ISBLANK(Subject)

Then from Immediate Workflow Actions, click Add Workflow Action to select Field Update
Select the Field to Update: Subject
Select Use a Formula to Set the New Value
Formula:
"Empty Chat"

Click SaveDoneActivate.

Remember that the Workflow Rule + Field Update will fire only when you save the record.

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas
This was selected as the best answer
Alan MonkAlan Monk
Thank you for your help Khan, much appreciated.