Skip to main content
Hello fndz,

 

how to make a 2 picklists field mandatory based on value selected in other picklist..

 

the 2 pick list  fields has field dependency..
1 Antwort
  1. 17. Juni 2012, 23:56
    Depending on what you are trying to do this could be done with either a validation rule or a set of field dependencies and required fields on the page layout. For example, a VR to accomplish this would be:

     

    AND(

     

    ISPICKVAL(picklistA, "value"),

     

    OR(

     

    ISBLANK(TEXT(picklistB)),

     

    ISBLANK(TEXT(picklistC))

     

    ))

     

    --KC
0/9000