我试图在 spotfire 的交叉表中找到每个单元格的贡献百分比。
表格如下所示
Group Name Score
1 Andy 80
Bill 70
Charlie 90
2 Andre 100
Bob 60
Clint 70
我想让表格显示这样的东西
Group Name Score Percentage
1 Andy 80 33%
Bill 70 29%
Charlie 90 38%
2 Andre 100 43%
Bob 60 26%
Clint 70 30%
其中每个百分比是每个人的分数除以每组的总分数,因此对于 Andy = 80/(80+70+90) = 33%
到目前为止,我的代码是这样的
Count([Score]) / Count([Score]) OVER (Intersect(Parent([Group]),All([Name])))
我不确定我错了哪一部分。请帮忙。
在我尝试了几种组合之后,我自己找到了答案。我将把我的方法留在这里,以便任何也尝试解决类似问题的人都能获得线索
Count([Score]) / Count([Score]) OVER (Intersect(Parent([Axis.Rows]),All([Axis.Rows])))