Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi can anybody suggest how to use below expreesion in text object
=if(aggr(count( distinct issueid),exceptionid,[cob date])>1),
count(distinct exceptionid)
The above expression gives desired result in chart but i am not able to achieve it in text object
my requirement is to find out count of exception id's if it is having more than one issue id
Thanks,
Shruthi
May be try this
Sum(Aggr(If(Count(DISTINCT issueid) >1, Count(DISTINCT exceptionid), exceptionid, [cob date]))
May be try this
Sum(Aggr(If(Count(DISTINCT issueid) >1, Count(DISTINCT exceptionid), exceptionid, [cob date]))
Hi, maybe with:
=if(Sum(aggr(count( distinct issueid),exceptionid,[cob date]))>1,
count(distinct exceptionid))
Hi Shruthi,
You can try:
=if(sum(aggr(count( distinct issueid),exceptionid,[cob date]))>1,count(distinct exceptionid))
Carlos M
Thank you all for your quick response