I have a report that I use as an invoice to charge our customers. Some of the charges are blank. I would like to be able to have it so that if the value is blank, it would put $0.00. I tried using the Nz() function (Nz(PerEntryChar ge, 0), but that just returns 0 even though the format for the control in the report is set to currency. I tried nesting the CCur() function inside the Nz() function like this: Nz(PerEntryChar ge, CCur(0)), but that still returned 0. I don't know what else to try.
I believe that I have run into a similar problem before, but I can't remember which database so I can find what I used.
I believe that I have run into a similar problem before, but I can't remember which database so I can find what I used.
Comment