Skip to main content

I'm trying to write a validation rule that:

 

IF the "Uninterested" box is checked

AND

"Uninterested Details" is blank

 

The user sees an error that tells them they have to put details in the details field. I've tried a few iterations of this and I'm constantly seeing either "Extra ")"" or "Extra AND" and I can't figure out why this formula is being such a hassle. Here's what I'm currently staring at:

 

IF (Uninterested__c, "True", "False")  AND ISBLANK( Uninterested_Details__c )

 

Where am I stumbling here? #Validation Formula

3 件の回答
  1. 2021年8月6日 21:23

    Hi Victoria,

     

    Try this

     

    AND(

    Uninterested__c,

    ISBLANK( Uninterested_Details__c )

    )

0/9000