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