I have a Check Register report that uses two file: check.register and vendor.master. All the fields on the report are from the check.register except "VENDORNAME", which is linked thru "VENDORNUMBER" from the vendor.master to check.register.
Here is the problem:
The report does not print a line for any NULL value vendors. The reason is because there are no NULL vendor numbers in the vendor.master file, but in the check.register files you do have NULL vendors, because it is only a field on the check, and "One time vendors" are permitted and stored as NULL. When I take out the field VENDORNAME, the totals on the bottom of the report are correct, and NULL vendors print. If I try to reference VENDORNAME, it does not print correct totals because NULL vendornumbers are not there. I even tried this formula in stead of VENDORNAME, but it did not help:
if (isnull({CHKREG_CSV.VENDOR#NUMBER })) then "One Time Vendor"
else {VENMAST_CSV.VENDOR#NAME }
but if I take out the "ELSE" statement the report prints NULL vendors again.
These are CSV files as ODBC data.
PLEASE HELP!!!!!!!!!
Here is the problem:
The report does not print a line for any NULL value vendors. The reason is because there are no NULL vendor numbers in the vendor.master file, but in the check.register files you do have NULL vendors, because it is only a field on the check, and "One time vendors" are permitted and stored as NULL. When I take out the field VENDORNAME, the totals on the bottom of the report are correct, and NULL vendors print. If I try to reference VENDORNAME, it does not print correct totals because NULL vendornumbers are not there. I even tried this formula in stead of VENDORNAME, but it did not help:
if (isnull({CHKREG_CSV.VENDOR#NUMBER })) then "One Time Vendor"
else {VENMAST_CSV.VENDOR#NAME }
but if I take out the "ELSE" statement the report prints NULL vendors again.
These are CSV files as ODBC data.
PLEASE HELP!!!!!!!!!