function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SAHG-SFDCSAHG-SFDC 

Dependant Picklist and Text Field

I am working on a requirement where I have field LeadState__c (Picklist )and if that is set to Reject then the LeadRejReason__c (PickList) should be picked form the values and RejComments__c (Text) should be added

As of now I have Reason but how do I add the comments to it? so that the user adds the comments 

Thanks
BhavnaBanodhaBhavnaBanodha
Hi,

You can write 2 validations:
1. For making LeadRejReason Required if LeadState = Reject
AND( ISPICKVAL(LeadState__c, "Reject"),  ISPICKVAL(LeadRejReason__c, "")

2. For making RejComments Required if LeadState = Reject
AND ( ISPICKVAL( LeadState__c, "Reject"), LEN (RejComments__c ) = 0)

Let me know if this helps

Bhavna