水晶报告中的SUB TOTAL

时间:2016-02-24 11:12:52

标签: crystal-reports crystal-reports-2008

我试图通过公式得到这些数字的小计,但是子总数是错误的,请检查此图像 检查图像

image

我在这里使用这个公式locamount是feild name而@test是参数..

'oauth2' => [
'class'               => 'filsh\yii2\oauth2server\Module',
'tokenParamName'      => 'token',
'tokenAccessLifetime' => '100800', // Expiry Time
'storageMap'          => [
    'user_credentials' => 'common\models\User', // This Should be your model name 
],
'grantTypes'          => [
    'client_credentials' => [
        'class'                => 'OAuth2\GrantType\ClientCredentials',
        'allow_public_clients' => false,
    ],
    'user_credentials'   => [
        'class' => 'OAuth2\GrantType\UserCredentials',
    ],
    'refresh_token'      => [
        'class'                          => 'OAuth2\GrantType\RefreshToken',
        'always_issue_new_refresh_token' => true,
        'refresh_token_lifetime'         => '100800',
    ],
],

@test参数

if isnull ({@test})
then {dt1.locamount}
else
{@test}

上面的代码一直持续到50号来

我点击插入字段并选择公式字段然后我写公式并将其保存为SUB_TOTAL然后拖动此字段即报告上的小计

如何解决这个问题

1 个答案:

答案 0 :(得分:0)

我可能会遗漏一些明显的东西,但是......你应该能够通过分组摘要运行总计来实现这一目标

  1. 在您的报告中,转到报告>集团专家。选择您想要小计的字段(VendorNo)

  2. 为要汇总的字段创建运行总计 - 如果要汇总计算字段,请先为计算字段创建公式(例如,{dt.acdocno} + {dt.fiscalyear} ),然后使用该公式作为您的字段来总结运行总计。

  3. enter image description here

    结果应如下所示

    enter image description here

    如果这不是您所需要的,您是否可以提供有关报告设计和所用表格的一些细节?