Skip to main content
I have this so far 

 

AND( ISCHANGED(OwnerId))

 

everytime I add record type id the syntax does not work???
5 respuestas
  1. 18 dic 2015, 23:05

    In case you are simply trying to prevent ownership change on certain record types, your validation rule should look like this:

    AND(

    ISCHANGED(OwnerId),

    OR(

    RecordType.Id = "Insert Record Type 1 Id",

    RecordType.Id = "Insert Record Type 2 Id"

    )

    )

     

    Please note that the Id to be inserted above should be the 15 digit Record Type Id that you can find in the URL in the address bar when you open the Record Type page.
0/9000