我是水晶报表的初学者,并在那里
在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
谢谢
答案 0 :(得分:0)
在水晶报表中,您可以使用抑制来使对象不可见
Format Field -> Common -> suppress Button
您可以在抑制公式中使用此示例:
if col4 = true then false else true;