Skip to main content

Hello Trailblazers, 

I have 2 Check boxes, (Urgent__c and Air_Order__c) 

I am trying to write a formula field to display 2 graphics icons in the same formula field. I have installed the graphics package and I am using the correct path name to the graphics. But having some issues with the logic. Can you please help me write the formula based on these conditions: 

 

If Urgent__c = True and Air_Order__c = True  then display both icons (Flag__red.ping and Tick.png)

If Urgent __c = True and Air_Order__c = False then display only (Flag__red.png) 

If Urgent__c = False and Air_Order__c = True then display only (Tick.png) 

If both Urgent__C and Air_Order__c = False then display nothing. 

 

What I have: 

===================

IMAGE(If (cs_Urgent__c = TRUE, "/resource/1635452210000/GraphicsPackNew/fatcow/farmfresh/16/flag_red.png","")& " " & "/resource/1635452210000/GraphicsPackNew/fatcow/farmfresh/16/tick.png", "")

0/9000