With this dataset:
Category | Amount
A | 5
A | 3
B | 6
B | 2
B | 1
C | 7
I want to create a tabli
You could have used Scope descriptors to identify the groups that the SUM is to be run against:
Grouped Amount: [Sum(Amount)]
Dataset Total: SUM(Fields!Amount.Value, "DataSet1")
Percentage: SUM(Fields!Amount.Value, "Category") /SUM(Fields!Amount.Value, "DataSet1")