Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to do a unique count of UserNames where the Firm field is blank
I tried this, but it didn't work
=COUNT(DISTINCT {$<Firm-={'*'}>}UserName)
any ideas?
I think this will handle both blanks and nulls:
COUNT(DISTINCT {$<UserName={"=len(trim(Firm))=0"}>}UserName)
-Rob
Thanks Jacob. Would I have to adapt my expression? Or would the null values be counted automatically?
I think you could use NullCount(distinct UserName), but you could also try Rob's solutions. They might be simpler.