Can you explain the main differences between using the FILTER_TO_NULL and not using it in a PU function. I see that the results differ for the following 2 functions:
PU_COUNT_DISTINCT (
Domain_Table("CEL_ACTIVITIES_CMS_COMBINED"."USER_NAME")
, FILTER_TO_NULL("CEL_ACTIVITIES_CMS_COMBINED"."CASE_ID")
, "Grouping_All"."QUERY GROUPING" = '<%= QueryGroup %>' )
And
PU_COUNT_DISTINCT (
Domain_Table("CEL_ACTIVITIES_CMS_COMBINED"."USER_NAME")
, "CEL_ACTIVITIES_CMS_COMBINED"."CASE_ID"
, "Grouping_All"."QUERY GROUPING" = '<%= QueryGroup %>' )