Skip to main content
Can someone help me please? I try to create a dynamic link. The customer has the option to click on a link on his order form and will be redirected to confirm his booking. The customer, however, sees this ugly link. The link should be hidden behind a short word. The dynamic link should individually and automatically extract the customer ID and the offer number from each opportunity. Does one have an idea?
3 个回答
  1. 2018年1月12日 14:18
    Hi Wolfgang,

     

    You can create a formula hyperlink and wrap it on an iff statement, as well to define the text to be displayed where to click. and add attributes from the record t the hyperlink, like for example is mostly used to pull reports relevant to the record:

     

    HYPERLINK("/00OZ0000000UvyD?pv0="

     

    & Account_ID__c

     

    &"&pv1="

     

    & QuoteLineItem.Product_Name__c

     

    ,"Latest Price")

     

    Chekc this out to get you started: https://help.salesforce.com/articleView?id=customize_functions.htm&type=5

     

    Hope this helps,

     

    Ines
0/9000