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
Karleen MendozaKarleen Mendoza 

Add "High priority" image to task

Hi All, I'd like to have an image, such as an exclamation point similar to Outlook on our Tasks. Right now, we are using a checkbox in conjuction with the standard "Priority" field to differenciate REALLY HIGH priority tasks (items that need to be completed TODAY and WITHIN the next hour. 

How do I create an image that can be updated when a checkbox=TRUE?
Raj VakatiRaj Vakati
IMAGE( IF(Task.chekcbox__c = True , "/img/samples/flag_red.gif",""), "/img/samples/flag_green.gif")

 
Karleen MendozaKarleen Mendoza
Thanks Raj!
Raj VakatiRaj Vakati
Use formula field with below formula 


​IMAGE( IF(Task.chekcbox__c = True , "/img/samples/flag_red.gif",""), "/img/samples/flag_green.gif")