Skip to main content

SF Community,

I am writing a validation rule where once an oppty hits a certian threshold in our ORG (25%) then it needs to have a dollar figure associated to it, however, I have run into the problem where:

 

A: You can enter the value 0

 

B: I need to make it where this is only applicable to a certain opportunity record type: IE: New Business Opportunity rather than Existing Business

Here's what I have built so far:

Validation rule for New Business Amount

How would I allow it only to work for my new business record type and not allow 0. 

Thanks!

 

-Drew
3 risposte
  1. 29 nov 2017, 18:14

    Try this:

    AND(

    Probability > 0.24,

    OR(

    New_Business_Amount__c = 0,

    ISBLANK(New_Business_Amount__c)

    ),

    RecordType.Name = "New Business"

    )

     

     
0/9000