Skip to main content

Hello, 

 

I have a custom object (OBJ) connected to the Lead. Record of OBJ is created through Quick Action on Lead. 

 

Name of the customer on the OBJ record is set automatically through the quick action in form a formula: 

TEXT(Lead.Salutation) +" "+ Lead.FirstName + " " + Lead.LastName

 

My computer is set to English but my users are in German. 

I added picklist value translatin for salutation, however whenever a new record of OBJ is created only English Salutation is displayed ( Mr. instead of Herr) 

 

Does anyone know how can I fix this? 

 

Thank you 
8 answers
  1. May 6, 2020, 2:52 PM
    I reckon something like this:

     

    IF ($User.Profile = "German Speaker",

     

        CASE(Lead.Salutation,

     

        "Mr.", "Herr",

     

        "Ms.", "Frau",

     

        TEXT(Lead.Salutation)),

     

        TEXT(Lead.Salutation)

     

    )
0/9000