문제

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)?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top