Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Looking to count the distinct users where month is less than or equaly to april 2014. When I apply the formula it returns a 0. Can anyone suggest what I am doing wrong here?
Count(Distinct{<Month={"<={'Apr'}"}>}Event.User)
Try to use Num# function before month and try
can you give an example please? syntax is everything
Try one of this ways and add a NumMonth field in the model like and then use that field in your expression see the expression below.
Load
Num(Month(DateField)) as NumMonth
From Location;
=Count(Distinct{<NumMonth = { "<=$(=Num(Month(AddMonths(Today(),-2))))" }>}Event.User)