I am trying to create a report and have a small issue counting NULLs.
My record selection formula is:
{TABLE.DateCreated} >= {?StartDate} and {TABLE.DateCreated} <= {?EndDate} AND
IsNull({TABLE.Field}) OR
{TABLE.Field} = ''
This gives me all record between the dates with either a NULL or a blank in the field. The issue is that I also have a total count on Group. It gives me the total for the records with blanks but returns a 0 for total with nulls even though there are some 25 or so records.
My cout formula is:
Count ({TABLE.Field}, {TABLE.Field})
Any guidance would be greatly appriciated..
My record selection formula is:
{TABLE.DateCreated} >= {?StartDate} and {TABLE.DateCreated} <= {?EndDate} AND
IsNull({TABLE.Field}) OR
{TABLE.Field} = ''
This gives me all record between the dates with either a NULL or a blank in the field. The issue is that I also have a total count on Group. It gives me the total for the records with blanks but returns a 0 for total with nulls even though there are some 25 or so records.
My cout formula is:
Count ({TABLE.Field}, {TABLE.Field})
Any guidance would be greatly appriciated..