Formula for Suppressing Field if duplicate in Crystal Reports

后端 未结 4 1898
渐次进展
渐次进展 2021-01-05 04:16

I have a view which shows data on crystal reports where I have fields like tariff,rental,shares,gross and net.My problem is if someone changes the tariff in database it woul

4条回答
  •  轮回少年
    2021-01-05 04:51

    Put this in suppress formula of field to hide.

    if {myTable.ID} = previous({myTable.ID}) then true else false

提交回复
热议问题