You need to sign in to do that
Don't have an account?

Pick List Value formula
Hi all!
I am creating a custom field that will be auto filled based on a formula from another fields pick list value. I seem to be having issues with my formula and would love to get some help if possible.
New field name is Est. Downloads Per Episode wihich will be give he number or a blank value depening ont he pick list value.
If Flight_Type_Basis__c is "Episode" or "Episode Maual" the new field will fill in the number from the field Avg_Downloads_per_Episode__c
but if the pick list value from Flight_Type_Basis__c is "Impression" or "Impression Manual" the result for the field will be Blank.
Any help would be greatly appreciated... I have been working on this most of the day.
I am creating a custom field that will be auto filled based on a formula from another fields pick list value. I seem to be having issues with my formula and would love to get some help if possible.
New field name is Est. Downloads Per Episode wihich will be give he number or a blank value depening ont he pick list value.
If Flight_Type_Basis__c is "Episode" or "Episode Maual" the new field will fill in the number from the field Avg_Downloads_per_Episode__c
but if the pick list value from Flight_Type_Basis__c is "Impression" or "Impression Manual" the result for the field will be Blank.
Any help would be greatly appreciated... I have been working on this most of the day.
Hope it works.
Try This formula :- Since you want blank Value for Impression and Impression Manual, we can simplify this formula to
PS: I guess Picklist Value is Episode Manual Not Episode maual. so I have changed Accordingly.
Regards
Abhilash Mishra
Please try below formula to acheive your requiremet: Hope, this will help to you.
Regards,
Abhinav
Hi Lisa,
Try this one, and I believe this will resolve your issue.
I hope it helps you. Please mark this as best answer if it helps you, so that it would be easily searchable for others.
Thanks,
Yogesh Sharma
You would like to put blank if Flight_Type_Basis__c won't be 'Episode' or 'Episode Manual' then try below formula: Hope, this will help to you.
Regards,
Abhinav
CASE (TEXT(Flight_Type_Basis__c),
"Episode", Avg_Downloads_per_Episode_del__c,
"Episode Manual", Avg_Downloads_per_Episode_del__c,
NULL
)
Formula is Ok if satisfies your requiremnts.
Please Mark the Question solved by selecting a best answer. so that other can find it easily.
Regards
Abhilash