Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a set of claims that all contain member information. I want to get a count of Male/Female of the distinct member#'s. I thought initially a simple count of gender field would be sufficient, but then I realized that I was counting the claims and not the distinct members.
do I need to create the distinct member subset on load or is there a way to do it through an expression? I'm hoping there's a way to do it with an expression.
@MSchatz : like this maybe?
Count(Distinct {$< Gender={"Male"},EMPRESA = {"5"}>}member)
Perfeito!