So my thinking is to include the "subject" title in my validation rule to make sure it only triggers when that task type is selected. The subject is hard coded, so I know this will always be the case. The subject is "Remove Prime Brokerage." My validation rule is listed below. What do I need to do in order to add the subject? Please let me know the best possible way to achieve this.
AND (NOT(ISPICKVAL(Remove_Prime_Brokerage_All_Accounts__c, 'YES')),(ISBLANK (Financial_Account__c)))
2 answers
You indicate that " it is messing up the other task record types. "
Why not include the Record Type you are trying to actually test for
AND
(
$RecordType.Name = "The RecType Name",
NOT(ISPICKVAL(Remove_Prime_Brokerage_All_Accounts__c, 'YES')),
(ISBLANK (Financial_Account__c))
)
Regards
Andrew