You need to sign in to do that
Don't have an account?
I need help regarding formula field picklist values color code
Hi Friends, Thanks in advance,
I have Export (Emergency__c) custom object in that (Approval_Status__c) approval status is picklist field with values 'Approved', 'Rejected'.
Approved is green
Rejected is Red
I need to create formula field for this
Status__c is formula field
Thanks
I have Export (Emergency__c) custom object in that (Approval_Status__c) approval status is picklist field with values 'Approved', 'Rejected'.
Approved is green
Rejected is Red
I need to create formula field for this
Status__c is formula field
IF(ISPICKVAL(Approval_Status__c, 'Approved') , IMAGE("/img/samples/color_green.gif "), IF(ISPICKVAL(Approval_Status__c, 'Rejected'), IMAGE("/img/samples/color_red.gif ")))
Thanks
Try below formula, it should work for your case.
All Answers
Try below formula, it should work for your case.
1) https://help.salesforce.com/HTViewSolution?id=000007604
2) https://help.salesforce.com/apex/HTViewHelpDoc?id=useful_advanced_formulas_image_links.htm&language=en_US
3) https://developer.salesforce.com/docs/atlas.en-us.usefulFormulaFields.meta/usefulFormulaFields/useful_advanced_formulas_image_links.htm
Please try like below
Let us know if this will help you