Skip to main content
Vipin Kumar (EdCast) 님이 #Data Management에 질문했습니다
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개
  1. 2020년 5월 12일 오전 8:59
    Hi Boshra,

     

    You can try below formula:

     

    AND(

     

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

     

    IsBlank(ParentId)

     

    )

     

     
0/9000