I have created a report that prints currency fields. I want to know how to have it not print $0.00 if nothing is entered in a field.
If nothing is entered it is Null.
What do you wish to print if the value is 0?
You can set the Format Property of the control in this order..
PositiveValue;NegativeValue;Zero;Null
i.e.
#.##.00;-#,##.00;$0.00;""
If you do not wish to show a Zero if the field value is Zero (which is
not the same as Null):
#.##.00;=#,##.00;"";""
If you also wish the $ sign, place it in front of each section, i.e.
$#,##0.00;-$#,##0.00;"";""
If you do not wish to have the values comma delimited by thousands, or
set to 2 decimals, use:
#;-#;"";""
Look up in Access Help...
Format Property + Number and Currency Datatype