• Dmitry Dubnovitsky
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 4
    Replies
I am working in https://developer.salesforce.com/trailhead/point_click_business_logic/validation_rules.I have following message in validate rule:"Challenge Not yet complete... here's what's wrong: 
The validation rule failed to enforce the business logic"
My examples:
1.NOT(ISBLANK(AccountId)) && Account.ShippingPostalCode != MailingPostalCode
2.AND( NOT(ISBLANK(AccountId)),
 MailingPostalCode != Account.ShippingPostalCode
 )
3.AND( NOT(ISBLANK(AccountId)),
 MailingPostalCode <> Account.ShippingPostalCode
 )
Help me please solve this problem!
I am working in https://developer.salesforce.com/trailhead/point_click_business_logic/validation_rules.I have following message in validate rule:"Challenge Not yet complete... here's what's wrong: 
The validation rule failed to enforce the business logic"
My examples:
1.NOT(ISBLANK(AccountId)) && Account.ShippingPostalCode != MailingPostalCode
2.AND( NOT(ISBLANK(AccountId)),
 MailingPostalCode != Account.ShippingPostalCode
 )
3.AND( NOT(ISBLANK(AccountId)),
 MailingPostalCode <> Account.ShippingPostalCode
 )
Help me please solve this problem!