At 11:42 AM 6/10/2005, Claudine Robbins wrote:
GETPROPERTY stopdesc TEXTVALUE 'vstopdesc' IF vstopdesc IS NULL THEN PROPERTY region3 VISIBLE FALSE ENDIF RETURN
Claudine, Define a variable as expression in report designer to achieve that goal. Make sure that the expression is evaluated at the [D] section. Then, use that value to evaluate the options to dynamically change the PROPERTY of any report control, as demonstrated in "EEPsInReportBands" in RRBYW10. So, instead of: GETPROPERTY stopdesc TEXTVALUE 'vstopdesc' IF vstopdesc IS NULL THEN PROPERTY region3 VISIBLE FALSE ENDIF RETURN You would use the following technique as "Before Generate Custom EEP" for that particular band: IF vVarriableValue IS NULL THEN PROPERTY region3 VISIBLE 'FALSE' ELSE PROPERTY region3 VISIBLE 'TRUE' ENDIF RETURN Hope that helps! Very Best R:egards, Razzak.
