Skip to main content
답변 9개
  1. 2015년 6월 22일 오후 8: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