7 Antworten
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 FieldFormula 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