Hello,
I am stuck on an issue where I count distinct values. Hopefully my explanation is clear enough.
Example Data:
For the sake of this data, I showed EVENT TYPE, EVENT SEVERITY, and EVENT RANGE as a single value. These do have multiple values, but I know how to filter by value. It is counting the distinct EVENT # for the following criteria:
COUNT
Any idea?
Thank you.
I am stuck on an issue where I count distinct values. Hopefully my explanation is clear enough.
Example Data:
EVENT # | SYSTEM | EVENT TYPE | EVENT SEVERITY | EVENT RANGE |
100 | A | FAIL | S8 | USED |
100 | A | FAIL | S8 | USED |
101 | A | FAIL | S8 | USED |
102 | A | FAIL | S8 | USED |
103 | A | FAIL | S8 | USED |
103 | B | FAIL | S8 | USED |
103 | B | FAIL | S8 | USED |
103 | B | FAIL | S8 | USED |
For the sake of this data, I showed EVENT TYPE, EVENT SEVERITY, and EVENT RANGE as a single value. These do have multiple values, but I know how to filter by value. It is counting the distinct EVENT # for the following criteria:
COUNT
- [DISTINCT EVENT #]
- SYSTEM = A
- EVENT TYPE = FAIL
- EVENT SEVERITY = S8
- EVENT RANGE = USED
Any idea?
Thank you.