你可以在访问查询中设置字段数量吗?

时间:2012-03-20 23:10:51

标签: crystal-reports

这就是我如何计算Access中名为TotalCompleted的字段

TotalCompleted: IIf([dod] Between forms!frmMonthlyReports!BeginningDate And 
forms!frmMonthlyReports!EndingDate 
And ([DischargeInformation] Like "completed*" 
Or [DischgInfo] Like "completed*"),1,0) 

然后我只计算所有这些以得到我的总数

我可以在Crystal Reports中以某种方式执行此操作,您能告诉我一个示例吗?

1 个答案:

答案 0 :(得分:2)

你的确可以。按照以下方式创建一个新的公式:

if {yourtable.dod} in {?FromData} to {?ToDate} and {yourtable.dischargeinformation} LIKE 'completed*' then
 1
else if {yourtable.dischginfo} LIKE 'completed*' then
 1
else
 0