You need to sign in to do that
Don't have an account?
Can Someone Please Help Me with this CASE with Image from Picklist Formula????
I am trying to display a different colored flag based on a value chosen in a PickList field on the same screen. Here is my code:
CASE ({!CSAT},
"Satisfied", "IMAGE("https://na2.salesforce.com/01540000000iFMJ", "Green_Flag") ",
"Some Concerns", "IMAGE("https://na2.salesforce.com/01540000000iFMO", "Yellow_Flag") ",
"Not Satisfied", "IMAGE("https://na2.salesforce.com/01540000000iFM9", "Red_Flag") ",
"None")
When I check the Syntax I get: ".....Syntax Error: Missing ")" and it is highlighting the above where I did a strike through. I have tried many variations of this code and cannot get past errors.
Can anyone help me? I'd really appreciate it!
Here is an example of a CASE function we use with the IMAGE function:
You need to use "servlet/servlet.FileDownload?file=InsertImageIDHere" rather than URLs as you have in your code.
All Answers
Here is an example of a CASE function we use with the IMAGE function:
You need to use "servlet/servlet.FileDownload?file=InsertImageIDHere" rather than URLs as you have in your code.
OMG - THANK YOU! You don' know how long I worked on this. Thank you thank you thank you - it works!!!!!!!
Glad I could help. Good luck!