Skip to main content
If a user selects 1 specific picklist value out of 4 options, how do I make that stand out on the account page or draw attention to it as has been requested? In other words can you make that "pop" so it draws attention to that field?
7 Antworten
  1. 9. Nov. 2017, 10:28
    Hi Mike,

     

    You could create a formula field and place it below the Picklist field.

     

    The formula will return an image based on the picklist value selected.

     

    i.e. since you want it for All Domestic Locations, have the formula render an image if that value is selected and for all other values the formula will not display anything.

     

    If you are ok with this approach, Create a Custom Formula Field

     

    Formula return type: Text and the formula will be

    IMAGE(

    CASE(Picklist_Field__c,

    "All Domestic Locations", "/img/samples/flag_green.gif",

    "/s.gif"),

    TEXT(Picklist_Field__c)

    )

    Use the insert field button to select the field API Name of Picklist Field

     

    As per the above formula if All Domestic Locations is selected on the Account then the formula will return a Green Flag.

     

    You could set your own Image as well if you want to, load the Image either into Documents or as a static Resource and copy the URL and use the above formula and replace the following line /img/samples/flag_green.gif with the URL

     

     
0/9000