Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
I have used below expression but it is showing error? how to set this to correct?
COUNT(DISTINCT IF(NOT MATCH(Queue,'bg','hg','hy'),ClientID)
You have 3 (´s and only 2 )´s please check this
Try This:
COUNT(DISTINCT IF(NOT MATCH(Queue,'bg','hg','hy')),ClientID)
May be it with set analysis:
=Count(DISTINT {<Queue -= {'bg', 'hg', 'hy'}>} ClientID)