asked on
Crystal Reports is a business intelligence application from SAP SE. It is used to graphically design data connections and report layouts from a wide range of data sources including Excel spreadsheets, Oracle, SQL Server databases and Access databases, BusinessObjects Enterprise business views, and local file-system information. Report designers can place fields from these sources on the report design surface, and can also deploy them in custom formulas (using either BASIC or Crystal's own syntax), which are then placed on the design surface. Crystal Reports also supports subreports, graphing, and a limited amount of GIS functionality.
TRUSTED BY
Suppression condition result should be a Boolean value. First 3 conditions always results in false as 2nd and 3rd are:
else if {?Days Over Due} = "Less than 30"
then ({@Days Overdue} <=0
and {@Days Overdue} >29) --> this will always be false since Days Overdue will be a single value and you are trying to check for 2 values using and conditions
//inclusive of 30 and 90 excluding less than 30 and greater than 90 *this returns similar results
else if {?Days Over Due} = "Between 30 and 90"
then ({@Days Overdue} <30
and {@Days Overdue} >90) --> here also same as above.
The 4th condition also looks contradictory.
Can you provide the details of exactly the 4 conditions and whether the report section needs to be suppressed or displayed for those? conditions?