Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I would like to group by a count expression and get the max of the values but I don't know how :
In #1 KPI there is no dimension (that makes sense for only 1 value ) Could someone tell me how can I do something like this:
MAX(COUNT(DINSTINCT [colonneA]) GROUPBY [colonneB])
Thanks
May be this:
Max(Aggr(Count(DISTINCT colonneA), colonneB))
Why did I suppose that would be harder ? Thank you !