Skip to main content
9 个回答
  1. 2015年6月22日 20:05

    Try this - 

    AND(

    CASE(

    CUSTOMER_STATUS__c,

    'Cancelled', 1,

    'Hold', 1,

    'Hold - New Web Provider', 1,

    'Installation Aborted', 1,

    'Paused', 1,

    'Partnership Compliance', 1,

    'Pending Cancellation', 1,

    0

    ) = 1,

    $Profile.Name <> "Performance Consultant",

    $Profile.Name <> "System Administrator"

    )

0/9000