I have question regarding bucket field in a summary formula field for matrix report . Here is the screenshot of the report .
We have bucket field Products with Category values Performace and Shingles, we would like to get percent of performance/subtotal for record owner.While creating the summary formula getting error bucket field does not exist . "BucketField_49162629:SUM does not exist. Check spelling."
14 respuestas
Thanks, that helps Okay so you basically need a Formula like this. I had to use an Opportunities with Products Report in my Dev org, but the concept is basically the same
IF(
TOTAL_PRICE:SUM = 0, 0 ,
TOTAL_PRICE:SUM
/
PARENTGROUPVAL(TOTAL_PRICE:SUM , FULL_NAME, CLOSE_MONTH)
)