Skip to main content
How to restrict Create New record access in Account object based on Profile?

 

Ex : user from profile1 only allowed to create New Account for country US. 

 

user from profile2 only allowed to create New Account for country Canada.

 

Can this be done by Validation Rule?

 

 
10 Antworten
  1. 13. Juli 2018, 18:03
    Like this:

     

    OR( AND(  ISNEW(),

     

                      TEXT(Country)<>'US',

     

                      $Profile.Name='Profile 1' 

     

                     ),

     

    AND( ISNEW(),

     

             TEXT(Country)<>'Canada',

     

              $Profile.Name='Profile 2' 

     

             )

     

    )
0/9000