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
Ramon PereiraRamon Pereira 

Error displaying image linked list

Hello,

I created a formula field that according to check some fields returns the image to the status of the object. In the registration screen, the image is displayed correctly, however when viewing the record in the related list appears another image.

The formula is:
IF(  AND(  LEN(TEXT(Data_de_Pagamento__c)) = 0 , Data_de_Vencimento__c < NOW() ), IMAGE("/servlet/servlet.FileDownload?file=015J0000000VrPW", "Red" , 16,16),
IF( Data_de_Pagamento__c  >  Data_de_Vencimento__c ,IMAGE("/servlet/servlet.FileDownload?file=015J0000000VrNp", "Yellow", 16,16) ,
   IF(AND(  LEN(TEXT(Data_de_Pagamento__c)) > 0 , Data_de_Vencimento__c >= Data_de_Pagamento__c ) , IMAGE("/servlet/servlet.FileDownload?file=015J0000000VrPv", "Green" , 16,16), 
    IMAGE("/servlet/servlet.FileDownload?file=015J0000000Vrb3", "Blue", 16,16) ) ) )

Has anyone had this problem?
ShashankShashank (Salesforce Developers) 
If it is the formula that you are having the issue with, I would recommend you raise a case with salesforce support to get this addressed.