Restrict a certain profile to create a new record of certain record type #inSalesforce

Restrict a certain profile to create a new record of certain record type #inSalesforce

Check the visual, write validation rule like:

AND(

    RecordType.Name= "Marketing",

    $Profile.Name = "System Administrator",

    ISNEW()

)

Comments