Skip to main content
I have created one custom field to display image. Formula used:

 

IF( Checklist_Age__c > 1 && RecordType.DeveloperName ="XXXX", IMAGE("URL", "Red" ,30,30) , NULL )

 

This formula is workig fine for one record type but not working for another record type.

 

What could be the possible reason. Tried recreating and refreshing but doesnot work.
10 个回答
  1. 2019年8月8日 07:40

    You can use like the below formula:

    IF(

    Checklist_Age__c > 1 && RecordType.DeveloperName ="XXXX",

    IMAGE("URL", "Red" ,30,30) ,

    IF(

    Checklist_Age__c > 1 && RecordType.DeveloperName ="YYYY",

    IMAGE("URL", "Green" ,30,30) ,

    IF( Checklist_Age__c > 1 && RecordType.DeveloperName ="ZZZZ",

    IMAGE("URL", "Blue" ,30,30) ,

    NULL ) ) )

     

    Hope it helps
0/9000