如何根据公式字段中的条件抑制水晶报表中的截面

时间:2014-08-11 06:54:53

标签: asp.net vb.net crystal-reports-2008

我有一个在水晶报告中转换捕手类型的公式:

select {command.catcher_type}
case 1:'Bag Net'
case 2:'Beach/Drag Seine'
case 3:'Danish Seine'
case 4:'Gill Net'
case 5:'Handline'
case 6:'Longline'
case 7:'Paaling/Drive-in Net'
case 8:'Push Net'
case 9:'Ring Net'
case 10:'Round Haul Seine'
case 11:'Sardine/Mackerel/Scad Purse Siene'
case 12:'Trawl'
case 13:'Tuna Purse Seine'
case 14:{command.other_gear}
default: 'N/A'

这适用于我的报告..

我必须根据上面公式结果中的值来取消报告的section3

这是我的抑制公式:

if('@gear_translate')="13" then
    True
else
    false

它不起作用..它没有抑制section3。

1 个答案:

答案 0 :(得分:1)

公式的结果是文本字段,因此您的目标公式应为:

if {@gear_translate}="Tuna Purse Seine" then
    True
else
    false