Formula for Suppressing Field if duplicate in Crystal Reports

后端 未结 4 1895
渐次进展
渐次进展 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:38

    You have to write the formula into field suppress. (No need on suppress if duplicated)

    On Rental Field {ID} = previous({ID}) and {rental} = previous({rental})

    If ID and Rental are same then only the Report will suppress Rental.

    I guess this will work for you.

提交回复
热议问题