在我的交叉表中,我正在尝试添加一个汇总字段,该字段将采用其他两个汇总字段并根据这些字段创建百分比。
一个字段总计提供者的所有约会(appt的数量),而另一个字段总计可能的销售机会的数量(opp的总和)。我想要添加的是一个总结字段,它实际上是百分比形式的opp / appt。
我将如何做到这一点?
Week 1 | Week 2 | Week 3 | Week 4|
Provider A | | | |
Appts 3 | 3 | 4 | 1 |
Opps 1 | 2 | 1 | 1 |
Opps/Appts ?? | ?? | ?? | ?? |
答案 0 :(得分:3)
在Crystal Reports 2008中:
添加以下文字:
Local Numbervar Denominator:= GridValueAt(CurrentRowIndex,CurrentColumnIndex,0); Local Numbervar Numerator:= GridValueAt(CurrentRowIndex,CurrentColumnIndex,1);
If Denominator<> 0 Then Numerator / Denominator * 100;