Skip to main content
Wolfgang Red が「#Data Management」で質問
 I need a validation rule that says that a certain group of users may set a checkbox to false. (but not true) - maybe with priovalue?
2 件の回答
  1. 2018年2月13日 12:47
    Hi Wolfgang ,

     

    Try such formula : use correct Profile names and Checkbox API.

    AND(

    Check_Box__c,

    OR(

    $Profile.Name = 'User Profile1' ,

    $Profile.Name = 'User Profile2'

    ),

    )

     

     
0/9000