Skip to main content
I am trying to achieve the following:

 

I want the commission to apply to my price, 

 

If the first field is blank  ISBLANK(TEXT(PiCKLIST) , then apply the BLANKVALUE( TEXT(  Opportunity.Marketer_OPP_Year__c  ), TEXT(Opportunity.Account.Marketer__c)),

 

"A",1,

 

"B",0.70,

 

"C",0.70,

 

"D",0.70,

 

"E",0.60,

 

0

 

)

 

Of course, if it s not blank , the followiing logic apply 

 

"A",1,

 

"B",0.70,

 

"C",0.70,

 

"D",0.70,

 

"E",0.60,

 

UnitPrice *

 

CASE(

 

ISBLANK(TEXT(PiCKLIST), 

 

BLANKVALUE( TEXT(  Opportunity.Marketer_OPP_Year__c  ), TEXT(Opportunity.Account.Marketer__c)),

 

"A",1,

 

"B",0.70,

 

"C",0.70,

 

"D",0.70,

 

"E",0.60,

 

0

 

)
2 respuestas
  1. 18 jul 2019, 08:56
    Thank you , i will try .

     

    The year it is just the name of the field 
0/9000