I have the details section of a report suppressed based on the following formula:
IF {?NAME}='SCARLSON' THEN ({DESCRIPTION} STARTSWITH 'RPM')=FALSE ELSE IF {?NAME}='LINGLE' THEN ({DESCRIPTION} STARTSWITH 'BOBC' =FALSE
ELSE NO
So, for example, if the parameter entered is SCARLSON, then it is showing me any records whose DESCRIPTION field starts with 'RPM'. This is doing what I want, almost. I want records that start with something OTHER than 'RPM' or 'BOBC' to show all the time, regardless of what is entered for the parameter. Right now they do not show at all.
IF {?NAME}='SCARLSON' THEN ({DESCRIPTION} STARTSWITH 'RPM')=FALSE ELSE IF {?NAME}='LINGLE' THEN ({DESCRIPTION} STARTSWITH 'BOBC' =FALSE
ELSE NO
So, for example, if the parameter entered is SCARLSON, then it is showing me any records whose DESCRIPTION field starts with 'RPM'. This is doing what I want, almost. I want records that start with something OTHER than 'RPM' or 'BOBC' to show all the time, regardless of what is entered for the parameter. Right now they do not show at all.