I am requesting help creating a VR, view below.
Before a user can select a value in the Court_Division__c Lookup field, there must be a value entered in the Court__c Lookup field.
Regards
4 answers
So that would be like this -
NoteAND(
ISBLANK(Court__c),
NOT(ISBLANK(Court_Division__c))
)
:
- This is not going to happen instantly. The VR will fire only if he / she selects a Court Division but saves the record without a Court.
- Also have you explore Lookup Filters [1] ? Your requirement could be handled wit that out of the box offering!
[1]: What is Lookup Filters -
https://help.salesforce.com/apex/HTViewHelpDoc?id=fields_lookup_filters_defining.htm. With that you specify a Filter on the second Lookup Field - Court Division to show values only based on the values in the former Lookup - Court.