field = 0 -> not printed

  • Thread starter Jean-Paul De Winter
  • Start date
J

Jean-Paul De Winter

Hi,
I don't want a field to be printed when it's value is 0.
Who knows what to do?
Thanks
JP
 
A

Allen Browne

Set the Format property of the control on the report to suppress the zero.

For a currency type field, you would need:
$#,##0.00;-$#,##0.00;""
 
Top