Skip to main content
How do I write a validation rule for when a checkbox is TRUE and you want them to then go to a particular picklist and select a value
3 个回答
  1. 2021年4月19日 09:55
    Hi Renai McCullagh,

     

     

    AND(

        Send_Updated_GO_contract__c,

        ISPICKVAL(Offer_Stage__c,"1 - Awaiting Client Approva'")

    )

    This is the correct validation rule assuming "1 - Awaiting Client Approval" is the picklist value. Are there supposed to be spaces between the 1 and hyphen and hyphen and Awaiting? If the value between the quotes is not verbatim, you wont receive a syntax error and the rule wont fire because they dont match exactly.

     

    Please mark it as best answer if it helps you to fix the issue.

     

    Thank you!

     

    Regards,

     

    Suraj Tripathi
0/9000