function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
haiduzhaiduz 

Icon or picture status Alerts!

I am looking for a way to include a field to indicate the status of an case using a picture instead of text. For example, if its a high profile case there needs to be a icon alert that shows up to really make it clear. Also, the managers want to be able to choose which icon is displayed.
 
Whats the best way to go about configuring hard to miss alerts at the case level?
NPMNPM
You could try a custom formula field (Text) that uses the IMAGE function to display images depending on the value of another field (using CASE or IF).  Go to Help and Training and search on IMAGE, there are a varitey of examples and resources you may find useful.
haiduzhaiduz

Thanks so much I did that and it worked exactly how i wanted. For reference, this is the condition statement I set up for my formula text field:

 

IF( ISPICKVAL(Priority , "high") , IMAGE("https://na1.salesforce.com/servlet/servlet.FileDownload?file=imageurl1", "High Priority"
),IF( ISPICKVAL(Priority , "Medium") , IMAGE("https://na1.salesforce.com/servlet/servlet.FileDownload?file=imageurl2", "Medium Priority"
) ,IF( ISPICKVAL(Priority , "Low") , null,null)))