
I would like to add a text field nominally called 'notes' and link it to a pick list value so that if that value is selected the 'notes' field must be completed. Can anyone tell me the best way to do this?
Thanks
Jane
8 respostas
Jane, Please create a validation rule here.
AND(
ISPICKVAL(field_api_name__c, "Picklist text"),
ISBLANK(Your_field_to_be_filled_in__c)
)
just replace the field names with your api names. Hope this helps!