
I would like to use this formula return of the actualy % in a custom report formula
2 risposte
Hi Cheshire, Picklist and text fields are not supported in custom summary formula fields on the report, you need to create a formula field on the object and use that field in the custom summary formulas. your formula will be something like below
CASE(Picklist_Field__c,
"25%", 0.25,
"50%", 0.5,
"75%", 0.75,
"100%",1,
NULL)
please sue the insert field button to select the API name of your picklist field.