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
janeisaacjaneisaac 

Images not getting displayed - only alternate text

I have a formula text field that is not displaying the image - only the alternate text.

It is based on a checkbox field (Discuss on IMP call) being checked.

 

Can someone see what is wrong in this?

 

IF(Discuss_on_IMP_Call__c,
IMAGE("/servlet/servlet.filedownload?file=01580000001XlyI","Discuss "),
" ")

 

Thanks,

Jane

Avidev9Avidev9

The url are case sensitive. Try this instead 

IF(Discuss_on_IMP_Call__c,
IMAGE("/servlet/servlet.FileDownload?file=01580000001XlyI","Discuss "),
" ")