Skip to main content

Hi,

 

I am trying to create a validation rule that if field a (date/time), field b (date/time), and field c (picklist) are blank, field d (picklist) cannot be set to "closed". This is what I have but I know it isn't correct - 

 

OR(

ISBLANK ( Actual_Delivery_Time__c ),

ISBLANK ( LifePort_Returned_Date_Time__c ),

ISPICKVAL ( Final_Organ_Disposition__c, "" ),

ISPICKVAL ( Status__c, "Closed")

)

 

 Can someone please help?  Thank you! 

 

#Formulas

4 个回答
  1. 2023年11月29日 15:15

    Give this a try

    AND(

    ISPICKVAL ( Status__c, "Closed"),

    OR(

    ISBLANK ( Actual_Delivery_Time__c ),

    ISBLANK ( LifePort_Returned_Date_Time__c ),

    ISBLANK(TEXT( Final_Organ_Disposition__c ))

    )

    )

0/9000