Skip to main content
ADMIN TBTC MC (AXIA) 님이 #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개
  1. 2019년 8월 8일 오전 7: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