Skip to main content

I am attempting to write a validation rule which will not allow the box to be checked until certain fields are populated.  I am also open to making those fields required if the box is checked.  My checkbox field is "Request Asset Number" and the required fields are Asset Manager, Financial Analyst, Asset Name and Investor #.

 

I've tried ISBLANK and IF statements, but it isn't working at all.

 

One other piece that might make a difference is Investor # is a multi-pick picklist.

 

Thanks!

 

Shelby
5 Antworten
  1. 4. Mai 2018, 16:20
    Try this = 

     

     

    AND(

        Request_Asset_Number__c = TRUE,

        OR(

            ISBLANK(Asset_Manager__c),

            ISBLANK(Financial_Analyst__c),

            ISBLANK(Asset_Name__c),

            ISBLANK(Investor_Number__c)

        )

    )

     

     
0/9000