Skip to main content

Can someone tell me why Sf is trying to get me to put a ) on the highlighted place???

Im having trouble, and now Im frustrated.

Im trying to say if the record type is new deal or relist and the deal subtype is new non managed or Non-Managed Relist, or Non-Managed Inactive Agent Warranty and the Processing fee type is blank or empty...

Then fire the validation rule.

 

Frustrated with a validation rule

7 answers
  1. Mar 9, 2023, 5:07 PM

    @LEAH Gus See below...

     

    AND(

    ISPICKVAL(Stage,”Resident Selected”),

    OR(RecordType.DeveloperName=“New Deal”,

    RecordType.DeveloperName=“Relist”),

    OR(

    ISPICKVAL(Deal_Subtype__c, “New Non-Managed”),

    ISPICKVAL(Deal_Subtype__c, “Non-Managed Relist”),

    ISPICKVAL(Deal_Subtype__c, “New Non-Managed Inactive Agent Warranty”)),

    NOT(ISBLANK(TEXT(Processing_Fee_Type__c)))

    )

     

    Thanks for allowing me to assist… Please click “🏆  Select as Best”, next to the “👍🏼  like“ icon below, if this answer is the most helpful.

     

    You Owe Me A Sea Urchin 🤣

    #Salesforce Admin #AwesomeAdmins #Formulas #Validation Rule #enthyco

0/9000