开发者

Crystal Sum on field value

How do I sum a specific field based on values in some other column. I am trying to do - Sum of Annual Costs (Column to be summarized) where Cost type (Column field the summary is to be based upon) = Equipment Costs.开发者_如何学运维 Thanks


This is nearly identical to your other question; create a formula that does the following:

if ({YourReport.CostType} = "Equipment Costs") then 
    {YourReport.AnnualCosts} 
else 
    0 

And then create a summary on this formula.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜