AND(
$RecordType.Name <> "L3 Dry Run,L3 Premium Event,L3 Standard Event",
ISPICKVAL( Booked_With__c , "L3"),
Participant_list_included__c = TRUE,
NOT(ISPICKVAL( RT_Event_Type__c , "Operator Assisted Premium")))
If the Booked With field is L3, and the Participant List is equal to true, then the RT Event Type must be Operator Assisted Premium. If these statements are not true, the error is triggered.
I have been trying to add the record type critieria, and no possible combintation is working. The record type is not being considered. The error is still being thrown for the record types which I am trying to exclude from the validation rule.
Any suggestions would be appreciated.
3 risposte
You might wanna try that like this instead:
AND(
$RecordType.Name <> "L3 Dry Run",
$RecordType.Name <> "L3 Premium Event",
$RecordType.Name <> "L3 Standard Event",
ISPICKVAL(Booked_With__c , "L3"),
Participant_list_included__c = TRUE,
NOT(ISPICKVAL(RT_Event_Type__c , "Operator Assisted Premium"))
)