每页重复行

Repeating row on each page

我有一份 crystal 报告,共 9 页 (1-9)。

我只有一个字段(字符串),用于显示数据库中的一条记录(比如金额)。问题是每个页面上都显示了金额。我希望一条记录(数量)只显示在第一页上。 我尝试了一些公式编辑的东西,比如 "Suppress if duplicate" 等

这里有 2 个屏幕截图。

Page 1/9 of the report Page 2/9 of the report

注意:汇款信息为群头

根据您报告的结构,以下公式之一应该可以解决问题。

amount字段的抑制公式放入:

1号

//suppressing the field on all records except the first record 
If OnFirstRecord Then False Else True

2号

//suppressing the field on all pages except page 1
If PageNumber=1 Then False Else True

3号

//suppressing the field on all groups except #1
If GroupNumber=1 Then False Else True