I have a Crystal Reports report, It contains 3 sub reports in 3 different details sections. (details a, details b, details c)
If I set suppress formula that use data from DB to the details section b and c
ISNULL({Table.Field})
When I generate a report the whole details section (a,b and c) is repeated multiple times and data duplicated from a 3-93 pages report.
My data is structured ads follow:
DataSource: ReportDS
Table: Client (Showed in details a)
-Name
-Surname
-...
Table: Order (Showed in details b repeated for any order in datasource)
-Date
-Total
-...
Table: Product (Showed in details c repeated for any product in datasource)
-Name
-Price
Section b suppress formula:
IF ISNULL({Order.Total}) THEN TRUE ELSE FALSE
Section c suppress formula:
IF ISNULL({Product.Name}) THEN TRUE ELSE FALSE