Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
=Count({<monthyear = {'January 2013'}>} distinct userID)
=Count({<monthyear = {'January 2013'}>} distinct userID)
Hi,
Try this :
=Count(DISTINCT {<monthyear = {'January 2013'}>} userID)
Aurélien
Create a straight table
Dimension = MonthYear
Expression
= Count(Distinct userID)
thanks