Skip to main content
Hello, 

 

I would like to make the Parent Account field (standard lookup field) mandatory if the Industry field (custom picklist field) is equal to "Global In-house Center (GIC)". 

 

I've created the following validation rule on the Account level: 

 

AND(

 

Ispickval( Industry ,"Global In-house Center (GIC)"),

 

OR(

 

Isblank(     ParentId    )))

 

But nothing happens, I don't get an error if or if I don't add GIC as the industry. 

 

Thanks,

 

Boshra

 

 
4 respostas
  1. 12 de mai. de 2020, 08:59
    Hi Boshra,

     

    You can try below formula:

     

    AND(

     

    Ispickval( Industry ,"Global In-house Center (GIC)"),

     

    IsBlank(ParentId)

     

    )

     

     
0/9000