Skip to main content
Amin Ahcene 님이 #Data Management에 질문했습니다
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개
  1. 2019년 4월 29일 오후 4: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