8 respuestas
ok cool.
If you wan the % field to be displayed on the report then the chart type must be a side by side vertical chart instead of the Stacked var chart
Create a Cusom Summary formula on the Report and Give a Name to your Column
Format Percent.Your Formula will be something like
RowCount/
PARENTGROUPVAL(RowCount, ROW_GRAND_SUMMARY, STAGE_NAME)
The Syntax of the PARENTGROUPVAL is
PARENTGROUPVAL(summary_field, ROW_GRAND_SUMMARY, COLUMN_GRAND_SUMMARY)
In your Case the summary_field is Record count which is RowCount
Depending on whether the Created by field is on the Row or Column Grouping, you will either Use Row Grand Summary or Column Grand Summary.
Please see the screenshot below, in my case my report is a matrix Report with Created by as Row Grouping and Stage in the Column GroupingYour Final Formula will be
RowCount/
PARENTGROUPVAL(RowCount, ROW_GRAND_SUMMARY, COLUMN_GRAND_SUMMARY)
Now Create a Chart, Vertical Side by Side chart
X:Axis - Area
Y:Axis - Cusom formula field taht we created above
Group by Created By
see the screenshot below
Please make sure the your check "Show Y-Axis Values" for the chart under the Formatting Tab
Your Final Chart will look like as below