i want to开发者_运维技巧 make crystal report of profit and loss statement i have a column of "vr_type" and there are 4 types in it "sale invoice", purchase invoice" now i want that put a 4 formula s where i select that "sum (vr_detail.debit) where vr_detail.vr_type} sale invoice it make Sum of al these types so kindly tell me what formula i should use to get the result in simply i want sum of sale,sum of purchase,sum of expense thanks
Crystal Reports doesn't have a sumif() function. You will need to create a formula field for each type of field that you want to summarize, then insert a Summarized field on the formula field.
For example, you could create a field named 'sales invoice'. The text of the formula would be:
if {vr_detail.vr_type}="sales invoice" then
{vr_detail.debit}
else
0
You would then select this field, then Insert | Summary...
You'll need to repeat this for each field.
** edit ** If you simply want subtotals by vr_type, follow these steps:
- Insert a group on the {vr_detail.vr_type} field. This will add a group-header (GH) and group-footer (GF) section to the report.
- Insert a summarized field on the {vr_detail.debit} and/or {vr_detail.credit} field.
精彩评论