I am greatful for any help with this.
답변 1개
Hi Negel,
You need to create a Text field for ClosedBy then you need to create a Workflow or Process Builder to update ClosedBy field whenever the record is modified.
Object
Case
when a record is created or edited
CriteriaFormula evaluates to true
AND(
ISPICKVAL([Case].Status, "Closed"),
ISCHANGED([Case].Status)
)
Action
Update Record
Select the Case record that started your processType: Formula
[Case].Owner:User.FirstName &" "& [Case].Owner:User.LastName&" "&[Case].LastModifiedDate
Hope it helps!