Skip to main content
Hello everyone, 

 

I am a new admin, learning on the go and of course, I am stuck with an issue :)

 

here is what I am trying to achieve:

 

I would like to add 19% to a number field, only if a Picklist field value is "Germany"

 

if you need more detail, shoot, and thank you all in advance 

 

 
3 Antworten
  1. 29. Apr. 2019, 16:01
    +Om

     

    However, if you suspect you might have similar increases in the future for other countries, the following format might be more future-proof:

    MyNumberField__c *

    CASE(MyPicklist__c,

    "Germany", 1.19,

    1)

    You could then add additional countries with their own values right after the line that says Germany.

     

     
0/9000