Skip to main content
I am using images ina report for red flag green flag yellow flag but I want then to show sorted green, yellow , red how do I do that 

 

This is the code

 

IF(Previous_Stage_Progressed__c = "Not Progressed", 

 

IMAGE ( "/img/samples/flag_red.gif","CRed"), 

 

IF(Previous_Stage_Progressed__c = "Progressed", 

 

IMAGE("/img/samples/flag_green.gif","AGreen"), 

 

IMAGE("/img/samples/flag_yellow.gif","BYellow")))

 

I put int the A.B.C before the colours to see would that work but it doesnt
6 respuestas
  1. 21 may 2015, 14:00
    Try this one.

     

     

    IMAGE( IF( Previous_Stage_Progressed__c = "Not Progressed" , "/img/samples/flag_red.gif","/img/samples/flag_red.gif"),

    IF( Previous_Stage_Progressed__c = "Progressed" , "/img/samples/flag_green.gif","/img/samples/flag_green.gif"),

    "")

     

    Thanks,

     

    Pritam Shekhawat
0/9000