开发者

Crystal Sum on field value

开发者 https://www.devze.com 2023-01-28 06:42 出处:网络
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) = E

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

精彩评论

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