Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.I faced a problem.
I have tw fields Subregion and Product. Expr is
cout({$<CalendarYearQuarter={'2013-Q1'}>} distinct CustINN )
In total we see 3362. How to write expression which will calculate this total sum in front of every product.
What I would like to get is
This expression aggr( sum(Expr),Subregion ) doesn`t work.
Try this
aggr(Nodistinct sum(Expr),Subregion, Product )
or
Sum( aggr( sum(Expr),Subregion ))
Full Total
SUM(TOTAL Expr)
For SubRegion wise Total
SUM(TOTAL <SubRegion> Expr)
It doesn`t work too. It shows 0 or -(NULL)
doesn`t help
can you attach your document?
What is expr...
means what is the expression behind expr?
try using sum({1}Field)
This expression aggr(count(DISTINCT CustINN),Subregion) works
but it show result next to only one product((
Is it possible to correct it?
cout({$<CalendarYearQuarter={'2013-Q1'}>} distinct CustINN )