Dataset is {CustId, Year, Amount}
Filtering is by 1 single CustId
Using Pie Chart (Group/Color is Year and Value is sum(Amount) ), % is provided out of the box.
Using horizontal bar chart (y-axis is Year, Value is sum(Amount) ), % is not available.
Calculated field of formula “Amount / sumOver(Amount, [CustId], PRE_AGG)” to get the percentage is incorrect. “sum(Amount) / sumOver(Amount, [CustId], PRE_AGG)” will give error “Mismatched aggregation. Custom aggregations can’t contain both aggregated and nonaggregated fields, in any combination.”
How to get % on bar chart?

