Skip to main content
I want to allow a recorded to be edited if the user is System Administrator Or HR AND when the record is Approved. This is the formula I am using

 

OR($Profile.Name <>'System Administrator', $Profile.Name <>'HR') &&ISPICKVAL( Status__c ,"Approved")

 

but the OR is not working - it works fine if I onlyuse one profile
2 个回答
  1. 2016年1月22日 10:04
    Hi Olivia,

     

    Please try the below

    AND(

    $Profile.Name <> 'System Administrator',

    $Profile.Name <> 'HR',

    ISPICKVAL(Status__c ,"Approved")

    )

     

     
0/9000