Selectively print lines in report

F

fredg

How do I print a line if a value is > 0 and not print if
not > 0 ?

Here are 2 ways.
Set the control's Format Property to:
#;

or..
set the control source of an UNBOUND control to:
=IIf(AField]>0,[AField],"")
 
Top