Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
when I create an expression of count, I tried to count that expression and it not work.
for example:
expression 'name' =count(A)
and later sum(total 'name')
and the resul is ' '
and i need the total of count.
some idea about how can I do this?
thanks friends.
count(total A)
sum(aggr(count(A), SomeDim))
you try Sum(Count(A))
Something like this...
=SUM(TOTAL Aggr(COUNT(INVOICE),Customer))