Hi All,
I have requirement in which I need to get the count of unique combination of two fields. See the example below, based on unique Run date and ID combination I need to calculate the count.
Run Date | ID | Count |
01.05.2013 | A | 1 |
01.05.2013 | A | 1 |
01.05.2013 | A | 1 |
06.05.2013 | A | 2 |
06.05.2013 | A | 2 |
06.05.2013 | A | 2 |
06.05.2013 | A | 2 |
07.05.2013 | B | 3 |
08.05.2013 | C | 4 |
10.05.2013 | A | 5 |
10.05.2013 | A | 5 |
10.05.2013 | A | 5 |
Total | 5 |
Can you please explain on how to achieve this.
Thanks in advance,
Ramesh