4 respuestas
Hi Chris,Can you try the formula as below.
Let me know if you face any syntax issues .If this solution helps, Please mark it as best answer.Thanks,IF(
AND(Total_Customer_Health_Score__c <= 4.75 , Total_Customer_Health_Score__c !=0),
IMAGE('/img/samples/flag_green.gif','Green Flag'),
IF(
AND(Total_Customer_Health_Score__c <= 6.75,Total_Customer_Health_Score__c >4.75) ,
IMAGE('/img/samples/flag_yellow.gif','Yellow Flag'),
IF(
Total_Customer_Health_Score__c >= 7,
IMAGE('/img/samples/flag_red.gif', 'Red Flag'),
NULL)))