On my purchase order form if I leave my "price" field blank it shows up as "$0.00" on my report. For every record that I don't have a price for I would like it to show nothing. On my report preview button on my form I have the code:
This works if all my PO items don't have a price, but if just one of them has a price... then all the rest show the "$0.00". What do I need to do to tell each different record to not display "price" unless there is an actual price for it?
Thanks
Code:
If IsNull([Form_Purchase Orders Subform].Subtotal) Then [Report_Purchase Order Copy].Subtotal.Visible = False [Report_Purchase Order Copy].Total.Visible = False End If
Thanks
Comment