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
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})
{ID} = previous({ID})
{rental} = previous({rental})
If ID and Rental are same then only the Report will suppress Rental.
I guess this will work for you.