如果在水晶报告条件

时间:2013-10-04 11:55:55

标签: crystal-reports

我需要通过检查以下要求来压缩一个部分。

If scanmode and status=null (these fileds coming from database) then i need to suppress the section. If it is not null then i need check next condition if status in [c,d] .if it is false i need to suppress the section without checking next conditions.If it is true then i need to check next condition

{Status.status}> = 3如果是> = 3那么我需要检查下一个条件{?Stack}<> “S”。

1 个答案:

答案 0 :(得分:0)

这应该很容易实现。在Section专家中,您可以在“suppress”选项下创建一个自定义公式,如下所示:

if (scanmode = 0 and status = 0) else if (c = value and d = value) else.....

如果您想要多个条件来抑制这些部分,那么您可以使用OR代替AND。 我建议你首先尝试使用一个条件来抑制抑制是否有效,然后再加上它。

希望有所帮助,

克里斯