使用C#的Crystal报表

时间:2013-12-24 14:26:09

标签: crystal-reports

我是水晶报表的初学者,并在那里

在Crystal Reports中创建应用程序

下面的示例Box对象

-----------------------
|Name | column1       |
|---------------------|
|text | column2       |
|---------------------|
|Remark| column3      |
----------------------

注意:column4包含true或false

如果cloumn4为true则表示Box应该是可见的false表示不可见

包含样本数据的表

col1 | col2| col3 | col4
-------------------------
abc  |abc  |abc   |true
def  |def  |def   |false
xyz  |xyz  |xyz   |false
xyz  |xyz  |xyz   |true

我想打印像

box1             (invisible)
(invisible)     box4

谢谢

1 个答案:

答案 0 :(得分:0)

在水晶报表中,您可以使用抑制来使对象不可见

Format Field -> Common -> suppress Button

您可以在抑制公式中使用此示例:

if col4 = true then false else true;