0

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

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" 。

4

1 回答 1

0

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

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

如果您想要多个条件来抑制这些部分,那么您可以使用 OR 而不是 AND。我建议您先尝试使用一种条件进行抑制,以查看抑制是否有效,然后再添加。

希望有帮助,

克里斯

于 2013-10-04T13:08:19.040 回答