Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

count users

Hi

I want to count users per monthyear and I am using an expression in a straight table to do so.

The expression is:

  =Count(DISTINCT userID({<monthyear = {'January 2013'}>} userID))

Obviously there is something wrong with this expression, can someone help me correct it?

Thanks!

1 Solution

Accepted Solutions
Nicole-Smith

=Count({<monthyear = {'January 2013'}>} distinct userID)

View solution in original post

4 Replies
Nicole-Smith

=Count({<monthyear = {'January 2013'}>} distinct userID)

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

Try this :

=Count(DISTINCT {<monthyear = {'January 2013'}>} userID)


Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
MK_QSL
MVP
MVP

Create a straight table

Dimension = MonthYear

Expression

= Count(Distinct userID)

Not applicable
Author

thanks