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
FXDC07FXDC07 

Display picture if checkbox is checked

I am trying to finish the formula to display picture (.jpg) if check box is checked.  I am not having much luck with this I tried using IF but I am missing something.
 
Any ideas, I am able to get the display image piece.
 
Thanks!
FXDC07FXDC07
I was able to get it resolved...in case anyone wants this for future use:
 
Display an image when checkbox is checked:
 
IF( Key_Account__c = TRUE,
IMAGE("/servlet/servlet.FileDownload?file=01530000000ZImr", "Key", 45, 45), " ")
NPMNPM
Try it with out the  = TRUE
 
The IF assumes the first component is the TRUE part, the second the FALSE part.
Lady_PirateLady_Pirate
Yeah! Thanks so much for posting! This is exactly what I was looking for! :smileyvery-happy: