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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Set Analyis Combination

Hi,

I am trying to summarise data by a field called StatChoice.

StatChoice
Email
Phone
Yes
No

This field contains varied answers which I need to combine, for example count the number of Cases which have an 'Email' flag


The expression works when in a textbox when I use:


=(Count(Distinct{$<StatChoice={'Email'}>}Case)


However, I want to summarise this further by counting the number of cases with an 'Email' flag and a response of 'Yes'


Any suggestions on how this can be achieved?


Thanks,

Paul



Labels (1)
1 Reply
sunny_talwar
MVP
MVP

May be this

=Count(DISTINCT {$<StatChoice={'Email'}, Response = {'Yes'}>}Case)