Image representation of Case Status #inSalesforce
Note: Here the path of the image are used from the Graphics Pack package which was installed in or else upload the image to Documents and use the image from there
Create a formula field on the object like here Case - let the name be Case Stage
CASE(Status, "New", IMAGE("/resource/1523798147000/GraphicsPackNew/silk/16/silk/star.png", "New")
,
"Working",IMAGE("/resource/1523798147000/GraphicsPackNew/silk/16/silk/comments.png", "Working"
),
"Escalated",IMAGE("/resource/1523798147000/GraphicsPackNew/silk/16/silk/flag_red.png", "Escalated"
),
IMAGE("/resource/1523798147000/GraphicsPackNew/silk/16/silk/heart.png", "Closed"))
Reference:
https://appexchange.salesforce.com/listingDetail?listingId=a0N30000004cfIcEAI&tab=r
https://www.salesforceben.com/
Comments
Post a Comment