This is what I have so far... but I don't know what is wrong. Should this somehow be an IF/OR statement?
ACCOUNT (Fraudulent_Activity__c,
"Good Standing", IMAGE("/img/samples/light_green.gif"),
"Pending Verification", IMAGE ("/img/samples/light_yellow.gif"),
"Fraudulent", IMAGE ("/img/samples/light_red.gif")
)
5 réponses
Ah, use this then:
CASE(
Fraudulent_Activity__c,
"Good Standing", IMAGE("/img/samples/light_green.gif", "Green"),
"Pending Verification", IMAGE ("/img/samples/light_yellow.gif", "Yellow"),
"Fraudulent", IMAGE ("/img/samples/light_red.gif", "Red"),
NULL
)