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 réponses
Hi Olivia, Please try the below
AND(
$Profile.Name <> 'System Administrator',
$Profile.Name <> 'HR',
ISPICKVAL(Status__c ,"Approved")
)