Question

Please see below matrix report before and after I run.

enter image description here

How can I find percentage of below marked fields, for example: 2/6=0.3 (%33)?

Was it helpful?

Solution

You can use an expression in each of your Gender Percentage Female/Male columns to get the count of each gender in that group compared to the number of members in the group:

Male

=Sum(IIf(Fields!Gender.Value = "M", 1, 0)) / Count(Fields!Members.Value)

Female

=Sum(IIf(Fields!Gender.Value = "F", 1, 0)) / Count(Fields!Members.Value)

This is getting the total male or female members in the scope then getting the percentage of the overall member count.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top