
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
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