【发布时间】:2012-11-05 07:21:44
【问题描述】:
我有一份财务报表。它的明细行分为销售、销售成本、运营费用和其他费用组。
- 销售和销售成本在父组“IF”中
- 运营费用在父组“E”中。
我想用总营业费用除以总销售额。这可能吗?
我已经为此苦苦挣扎了几个星期。我可以用这个公式得到毛利润占销售额的百分比:
= iif(Fields!SectionName.Value = "IF" and
Fields!Account_Type.Value = "I",
(ReportItems!txtGP12.Value/Fields!Month12_Net.Value),"0").
【问题讨论】:
-
实际上,iif 语句对我没有任何作用。我用这个公式得到了基本相同的结果:=ReportItems!txtGP12.Value/Fields!Month12_Net.Value
-
你可以尝试做一些变化:stackoverflow.com/questions/12850524/…