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
YuckleYuckle 

How can I tell if Case RrecortType has Changed?

SF doesn't allow ISCHANGED($RecordType.Name).    I need a way t to write a workflow rule to make field updates if someone changes the case record type.

 

 

kwukwu

You will most likely need to write a trigger to test whether or not the recordtype has changed.

werewolfwerewolf

You should be able to put the ISCHANGED on RecordTypeId, like ISCHANGED(RecordTypeId).  $RecordType.Name is not a field; ISCHANGED only works on fields.