Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
shruthibk
Creator
Creator

Aggregation in text box

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

1 Solution

Accepted Solutions
sunny_talwar

May be try this

Sum(Aggr(If(Count(DISTINCT issueid) >1, Count(DISTINCT exceptionid), exceptionid, [cob date]))

View solution in original post

4 Replies
sunny_talwar

May be try this

Sum(Aggr(If(Count(DISTINCT issueid) >1, Count(DISTINCT exceptionid), exceptionid, [cob date]))

rubenmarin1

Hi, maybe with:

=if(Sum(aggr(count( distinct issueid),exceptionid,[cob date]))>1,

count(distinct  exceptionid))

CarlosAMonroy
Creator III
Creator III

Hi Shruthi,

You can try:

=if(sum(aggr(count( distinct issueid),exceptionid,[cob date]))>1,count(distinct  exceptionid))


Carlos M

shruthibk
Creator
Creator
Author

Thank you all for your quick response