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 respostas
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