Skip to main content
Hello everyone, 

 

I am trying to achieve a number field with the following but my formula won't work

 

-- If the account is own by Picklist (AgencyA__C) , nothing happen 

 

--If the account is own by Picklist ( AgencyB, C, D,E) ,remove 30%

 

Revenue__c  *

 

CASE(  Agencies__c  ,"AgencyA", 1,

 

0.70)

 

Thanks in advance for your input :)
3 respostas
  1. 5 de jun. de 2019, 14:28

    Like this:

    Revenue__c *

    CASE(Agencies__c,

    "AgencyA",1,

    "AgencyB",0.70,

    "AgencyC",0.70,

    "AgencyD",0.70,

    "AgencyE",0.70,

    0

    )

     

     
0/9000