Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if([Allowed]='A',Count(distinct [UserID]),0) ----- not working for counting distinct user ID based on selection
Instead of If(Count... structure, try Count(If(.. structure, like:
Count(Distinct if([Allowed]='A', [UserID]))
Count({<Allowed={'A'}>}distinct [UserID])
Instead of If(Count... structure, try Count(If(.. structure, like:
Count(Distinct if([Allowed]='A', [UserID]))
Count({<Allowed={'A'}>}distinct [UserID])