Hi,
I'm trying to simplify a Webi report so that a total count of unique ID numbers are listed for each Year/Quarter period in a table. The main complication is that there are additional dimensions in the table (culled from two separate queries) that are used to arrive at these counts per Year/Quarter. I've tried various SUM and COUNT combinations with different operators (In, ForEach...) but have not had any luck.
Excluding the hidden dimensions, the table looks like this (with a break added for Year/Quarter) :
Group | Year/Quarter | ID# |
---|---|---|
Group 1 | 2013/04 | 1234 |
2013/04 | 4567 | |
Count([ID];Distinct) = 2 | ||
2014/01 | 7891 | |
Count([ID];Distinct) = 1 |
However, I would like to show just the distinct counts for each Year/Quarter:
Group | Year/Quarter | Total ID#s |
---|---|---|
Group 1 | 2013/04 | 2 |
2014/01 | 1 |
Is there a way to either:
a) create a new variable that would provide the total count of unique ID#s for each Year/Quarter?
or b) hide the ID#s in the first example, merge the duplicate values in the Year/Quarter break, and just show the Count([ID];Distinct) rows for each Year/Quarter?
Any help would be much appreciated!
-Davis