Hi all,
Very new to Alteryx!
I am needing to add a column into my table that runs a distinct count.
This is a sample of my table currently:
CaseNumber | Date |
1A | 1/1/2015 |
1A | 1/2/2015 |
1A | 1/2/2015 |
2A | 2/1/2015 |
3A | 3/1/2015 |
2A | 4/1/2015 |
The Distinct Count would perform a distinct count on Case Number so:
CaseNumber | Date | DistinctCount |
1A | 1/1/2015 | 1 |
1A | 1/2/2015 | 0 |
1A | 1/2/2015 | 0 |
2A | 2/1/2015 | 1 |
3A | 3/1/2015 | 1 |
2A | 4/1/2015 | 0 |