
Anonymous
Not applicable
2018-02-23
08:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Set Analyis Combination
Hi,
I am trying to summarise data by a field called StatChoice.
StatChoice |
---|
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
552 Views
1 Reply

MVP
2018-02-23
12:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
=Count(DISTINCT {$<StatChoice={'Email'}, Response = {'Yes'}>}Case)
507 Views
