Skip to main content

I am trying to write a validation rule that would require a field to be completed if a stage level is selected AND from a date field meets a min requirement.

 

This is what I have so far but don't know how to include the date requirement  AND (  OR (  ISPICKVAL(StageName, "5 - awarded"),  ISPICKVAL(StageName, "4 - imminent"),  ISPICKVAL(StageName, "3 - likely"))    &&  ISBLANK( Validation__c )) 

6 answers
  1. Oct 4, 2022, 3:19 PM

    Could you please give a try to the below formula

    AND

    (

    CASE(StageName, '5 - awarded', 1, '4 - imminent', 1, '3 - likely', 1, 0) = 1 ,

    Award_Date__c >= DATE(2022, 09, 30),

    ISBLANK(Awarded__c)

    )

0/9000