Skip to main content
 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 respuestas
  1. 13 feb 2018, 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