Selectively print lines in report

  • Thread starter Thread starter Hugh
  • Start date Start date
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],"")
 
Back
Top