• Venu M
  • NEWBIE
  • 0 Points
  • Member since 2018
  • Salesforce Functional Consultant

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Hi, I need to create a validation rule for record type to restrict the user from creating with 2 conditions, one when the email is blank and another when (screening pick value is unscreened and Territory Lookup is blank), following is something I tried but it works for first condition but not the second. 

AND( 
$RecordType.Name = "Partner", 
ISBLANK(Email),
OR($RecordType.Name = "Partner", 
ISPICKVAL(Screening__c, "Unscreened"),
ISBLANK(Sales_Territory__c))))
Hi All,

could someone help me with below validation rule?

RecordType.Id/Name = "ABC" or "DEF",
ISBLANK(Email), - Standard Field
OR
RecordType.Id/Name = "ABC" or "DEF"  - same record type as above
ISPICKVAL(Picklisk__C, "Unscreened")
ISBLANK(Territory),  - Lookup Field

Thanks!
Hi All,

could someone help me with below validation rule?

RecordType.Id/Name = "ABC" or "DEF",
ISBLANK(Email), - Standard Field
OR
RecordType.Id/Name = "ABC" or "DEF"  - same record type as above
ISPICKVAL(Picklisk__C, "Unscreened")
ISBLANK(Territory),  - Lookup Field

Thanks!