Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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!

Labels (1)
1 Solution

Accepted Solutions
Nicole-Smith
MVP
MVP

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

View solution in original post

4 Replies
Nicole-Smith
MVP
MVP

=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