You need to sign in to do that
Don't have an account?
Surbhi Dham 16
validation rule on account record type
i need to write a validation rule on account where i want some specific profile to change the record type of the account if the account status is prospect. also, i want that rest of the profiles should not be able to change the record type. please advise.
AND(ISPICKVAL('Status__c', 'Prospect'), IsChanged(RecordTypeId), $Profile.Name != 'System Admin', $Profile.Name != 'Finance')
In above scenario only admin and finace can change the recordtype no one else.
I have written the same but in this case finance profile can still change the record type of Active or Inactive accounts which i don't want. i want them to change only the record type if te status is prospect. this is not working in that case.