Hi there. I'm a new user of Qlik Sense and I'm creating a chart and I want to do a distinct count of sessions in one column but I want to exclude certain user IDs from the count. So far I have the following formula.
Count({<Agent_ID-={'UserID1@company.com','UserID27@company.com','UserID33@company.com'}>} Distinct Session_ID)
Unfortunately this seems to return the same number of values as
Count(Distinct Session_ID)
Where am I going wrong please?
try = -
Count({<Agent_ID = - {'UserID1@company.com','UserID27@company.com','UserID33@company.com'}>} Distinct Session_ID)
Unfortunately that just makes the count negative instead of positive (bottom line on chart).
Hi, The syntax seems correct, try with double quotes.
{"UserID1@company.com", ...}
Same result...
= - Count({<Agent_ID = - {"UserID1@company.com","UserID27@company.com",'"UserID33@company.com"}>} Distinct Session_ID)
the expression is
= Count({<Agent_ID = - {'UserID1@company.com','UserID27@company.com','UserID33@company.com'}>} Distinct Session_ID)
what is the dimension for the x axes?
But that just takes me back to returning the same value...
I still haven't managed to sort this. Does anybody else have any suggestions?