Skip to main content
ADMIN TBTC MC (AXIA) ha fatto una domanda in #Data Management
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 risposte
  1. 8 ago 2019, 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