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
VijaykumarVijaykumar 

'Audit Engagement Date' Field to be Required when creating cases with case reason = 'Audit'.

Hi Guys

'Audit Engagement Date' Field to be Required when creating cases with case reason = 'Audit'.  

i have created the field and validation rule as

ISPICKVAL( Reason ,'Audit')  &&  ISNULL(Audit_Engagement_Date__c)
could you please help here its not working while creating new case

Best Answer chosen by Vijaykumar
CharuDuttCharuDutt
Hii Vijay kumar
Try Below Validation
AND(ISPICKVAL(Reason, 'Audit'), ISBLANK(Adudit_Engagement_Date__c))
Please Mark It As Best Answer If It Helps
Thank You! 

All Answers

AnkaiahAnkaiah (Salesforce Developers) 
Hi VijayKumar,

Can you try with below code.
AND(ISPICHVAL(Reason, 'Audit'), ISBLANK(Adudit_Engagement_Date__c))

If this helps, please mark it as best answer.

Regards,
Ankaiah
AnkaiahAnkaiah (Salesforce Developers) 
AND(ISPICKVAL(Reason, 'Audit'), ISBLANK(Adudit_Engagement_Date__c))

 
CharuDuttCharuDutt
Hii Vijay kumar
Try Below Validation
AND(ISPICKVAL(Reason, 'Audit'), ISBLANK(Adudit_Engagement_Date__c))
Please Mark It As Best Answer If It Helps
Thank You! 
This was selected as the best answer
VijaykumarVijaykumar
Thank you guys...That worked!