Skip to main content
I am requesting if someone could help me with a Validation Rule, view below

 

Prevent $Profile.Name = "Account Manager", From updating any data in the  Tax_ID_Number__c  field in Accounts, for  RecordType.Name = 'Creditor'

 

currently I got my incomplege VR below and I am trying to figure out the rest.

 

AND(

 

RecordType.Name = 'Creditor',

 

$Profile.Name = "Account Manager",
8 answers
  1. Jul 28, 2014, 6:57 PM

    AND(

    RecordType.Name = 'Creditor',

    $Profile.Name = "Account Manager",

    ISCHANGED(Tax_ID_Number__c))

0/9000